From 413cd2575f08c17ca8abc00f72b3c0a484a4919b Mon Sep 17 00:00:00 2001 From: Ivo Zilkenat Date: Fri, 12 Jul 2024 23:53:38 +0200 Subject: [PATCH] Minor refactoring --- source/GM-TE/GMTEButtonGroup.class.st | 2 +- source/GM-TE/GMTETile.class.st | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/source/GM-TE/GMTEButtonGroup.class.st b/source/GM-TE/GMTEButtonGroup.class.st index ebb88f35..8c9fa315 100644 --- a/source/GM-TE/GMTEButtonGroup.class.st +++ b/source/GM-TE/GMTEButtonGroup.class.st @@ -4,7 +4,7 @@ Buttons can join a GMTEButtonGroup, which then ensures that only one of them is Class { #name : #GMTEButtonGroup, #superclass : #Dictionary, - #category : #'GM-TE-Core', + #category : #'GM-TE-Editor', #'squeak_changestamp' : 'mcjj 7/12/2024 23:26' } diff --git a/source/GM-TE/GMTETile.class.st b/source/GM-TE/GMTETile.class.st index b5a36940..a67f4698 100644 --- a/source/GM-TE/GMTETile.class.st +++ b/source/GM-TE/GMTETile.class.st @@ -19,13 +19,12 @@ GMTETile class >> checkerBoardColors [ { #category : #'instance creation', - #'squeak_changestamp' : 'Valentin Teutschbein 7/12/2024 20:54' + #'squeak_changestamp' : 'Ivo Zilkenat 7/12/2024 23:50' } GMTETile class >> checkerBoardTile [ "Returns a tile with a checkboard pattern" | checkerboardPatternForm | - self flag: 'Magic number 32?'. checkerboardPatternForm := Form extent: 2 @ 2 depth: 32. self checkerBoardColors keysDo: [:offset | @@ -56,10 +55,9 @@ GMTETile class >> placeHolderColor [ { #category : #'instance creation', - #'squeak_changestamp' : 'jj 6/22/2024 16:11' + #'squeak_changestamp' : 'Ivo Zilkenat 7/12/2024 23:51' } GMTETile class >> position: aPoint extent: anExtent [ - "comment stating purpose of message" ^ (self new) setPlaceholderWithExtent: anExtent color: self placeHolderColor;