#OTHER by mawalch
authormawalch
Tue, 30 May 2017 19:24:57 +0200
changeset 8042 392ab602cefc
parent 8041 af78382f96e9
child 8044 7c3a5df4e5d0
#OTHER by mawalch Spelling fixes.
WindowGroup.st
--- a/WindowGroup.st	Tue May 30 19:03:50 2017 +0200
+++ b/WindowGroup.st	Tue May 30 19:24:57 2017 +0200
@@ -2044,17 +2044,17 @@
 
 focusMomentaryRelease
     "release and reacquire focus.
-     Use this to allow inputs fields with accept on lost focus
+     Use this to allow input fields with accept on lost focus
      to accept when a button or menu item is pressed"
 
     |oldFocusView|
 
     "/ the problem was that the #focusToView: asked for canTab
-    "/ what should not be done during restore (might anser false).
+    "/ what should not be done during restore (might answer false).
 
     oldFocusView := self focusView.
     oldFocusView isNil ifTrue:[^ self].
-    
+
     self focusView:nil.
 
     self focusView == oldFocusView ifTrue:[^ self].
@@ -2063,6 +2063,8 @@
     ].
 "/    self focusToView:nil.
 "/    self focusToView:oldFocusView
+
+    "Modified (comment): / 30-05-2017 / 19:20:49 / mawalch"
 !
 
 focusNext