FileApplicationNoteBook.st
changeset 17683 6153d8f66313
parent 17640 06a397102b23
child 17745 437d51086b48
--- a/FileApplicationNoteBook.st	Mon Sep 11 09:06:48 2017 +0200
+++ b/FileApplicationNoteBook.st	Mon Sep 11 09:07:04 2017 +0200
@@ -4347,6 +4347,7 @@
 update:something with:aParameter from:changedObject
     changedObject == self fitSize ifTrue:[
         changedObject value ifTrue:[
+            "/ imageView adjust:#smoothFitBig.
             imageView adjust:#fitBig.
         ] ifFalse:[
             imageView adjust:nil.
@@ -4354,6 +4355,8 @@
         ^ self
     ].
     super update:something with:aParameter from:changedObject
+
+    "Modified: / 11-09-2017 / 09:06:40 / cg"
 ! !
 
 !FileApplicationNoteBook::ImageViewApplication methodsFor:'event handling'!
@@ -4382,7 +4385,7 @@
                 ^ true.
             ].
             ((key == #Escape) or:[key == $x]) ifTrue:[
-                self topView collapse.
+                self topView perform:#collapse ifNotUnderstood:[].
                 ^ true.
             ].
             ((key == #Cut) 
@@ -4395,6 +4398,8 @@
         ]
     ].
     ^ false
+
+    "Modified: / 10-09-2017 / 16:52:40 / cg"
 ! !
 
 !FileApplicationNoteBook::ImageViewApplication methodsFor:'initialization & release'!