ImageEditor.st
changeset 475 0d5a50fe59f4
parent 468 bb4e776b9210
child 487 6c336c183330
--- a/ImageEditor.st	Fri Jan 23 18:56:46 1998 +0100
+++ b/ImageEditor.st	Fri Jan 23 19:05:04 1998 +0100
@@ -1114,6 +1114,22 @@
     ^builder componentAt: #resourceSelectorInputField
 ! !
 
+!ImageEditor methodsFor:'active help'!
+
+defaultInfoLabel
+
+    |usedColors|
+    self image isNil ifTrue: [^'No image defined'].
+    self image colorMap isNil ifTrue: [usedColors := '?'] ifFalse: [usedColors := self image usedColors size].
+    ^self image width printString, 'x',
+        self image height printString, 'x',
+        (2 raisedTo: self image depth) printString,
+        (self image mask notNil ifTrue: [' (mask + '] ifFalse: ['(']),
+        usedColors printString,
+        ' used colors)'
+
+! !
+
 !ImageEditor methodsFor:'aspects'!
 
 imageIsLoaded
@@ -1366,16 +1382,7 @@
 
 updateInfoLabel
 
-    |usedColors|
-    self image colorMap isNil ifTrue: [usedColors := '?'] ifFalse: [usedColors := self image usedColors size].
-    self valueOfInfoLabel value:
-        self image width printString, 'x',
-        self image height printString, 'x',
-        (2 raisedTo: self image depth) printString,
-        (self image mask notNil ifTrue: [' (mask + '] ifFalse: ['(']),
-        usedColors printString,
-        ' used colors)'
-
+    self valueOfInfoLabel value: self defaultInfoLabel
 
 !