#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Fri, 25 Aug 2017 09:59:11 +0200
changeset 17633 2c0d2bdab09e
parent 17632 8b7e10435a11
child 17634 3e58f7cc4db5
#BUGFIX by cg class: FileApplicationNoteBook::XViewApplication changed: #setupXView
FileApplicationNoteBook.st
--- a/FileApplicationNoteBook.st	Thu Aug 24 18:04:06 2017 +0200
+++ b/FileApplicationNoteBook.st	Fri Aug 25 09:59:11 2017 +0200
@@ -7211,8 +7211,8 @@
     xExt := self xView width asString.
     self masterApplication notNil ifTrue:[
         mainView := self builder windowGroup mainView.
-        "/ if the mainView is a FileBrowser take them y extent because size of notebook can be changed
-        (mainView application class == (Smalltalk at:#FileBrowserV2 ifAbsent:nil)) notNil ifTrue:[
+        "/ if the mainView is a FileBrowser, take the y extent because size of notebook can be changed
+        (mainView application class == (Smalltalk at:#FileBrowserV2 ifAbsent:nil)) ifTrue:[
             yExt := mainView height asString.
         ].
     ].
@@ -7221,6 +7221,8 @@
     ].
     ext := xExt, 'x', yExt.    
     self startViewer.
+
+    "Modified: / 25-08-2017 / 09:58:41 / cg"
 ! !
 
 !FileApplicationNoteBook::XViewApplication methodsFor:'actions VNC'!