ImageEditView.st
changeset 5588 f780d54d56ad
parent 5587 9905471b62fd
child 5589 c10991d8d1a0
--- a/ImageEditView.st	Wed Aug 30 16:03:03 2017 +0200
+++ b/ImageEditView.st	Thu Aug 31 18:16:23 2017 +0200
@@ -3037,11 +3037,17 @@
             with:image depth
             with:(image mask notNil ifTrue: ['+mask'] ifFalse:[''])).
 
+        image depth ~~ image bitsPerSample sum ifTrue:[
+            s print:' ('.    
+            image bitsPerSample do:[:each | s print:each] separatedBy:[s print:'·'].   
+            s print:')'.    
+        ].
+        
         d := image depth min:24.
         ' [%1/%2 colors]' expandPlaceholdersWith:{image nColorsUsed. (2 raisedTo:d)} on:s.
     ].
 
-    "Modified: / 29-08-2017 / 22:32:53 / cg"
+    "Modified: / 31-08-2017 / 18:15:40 / cg"
 !
 
 showCursorAt: aPoint andInformation: aLabel