#UI_ENHANCEMENT by cg
authorClaus Gittinger <cg@exept.de>
Sat, 26 May 2018 11:50:51 +0200
changeset 8373 a11dc4036f13
parent 8372 8156eaa8cf64
child 8374 fb59fd51713a
#UI_ENHANCEMENT by cg class: SimpleView changed: #keyboardZoomInAllViews: do not zoom all views, but only this windowGroup's
SimpleView.st
--- a/SimpleView.st	Thu May 24 21:20:19 2018 +0200
+++ b/SimpleView.st	Sat May 26 11:50:51 2018 +0200
@@ -6445,12 +6445,14 @@
 !
 
 keyboardZoomInAllViews:largerBoolean 
-    "CTRL+/- zoom action global.
+    "CTRL+/- zoom action for this windowGroup.
      Sent to all windows; some may ignore it."
 
-    self device allViewsDo:[:each |
+    self topView windowGroup allViewsDo:[:each |
         each keyboardZoom:largerBoolean 
-    ].    
+    ].
+
+    "Modified: / 26-05-2018 / 11:49:43 / Claus Gittinger"
 !
 
 mapped