#BUGFIX by exept
authorClaus Gittinger <cg@exept.de>
Sun, 24 Nov 2019 16:17:37 +0100
changeset 6740 c5b2dda450d0
parent 6739 81e744322fab
child 6741 e10ca4712018
#BUGFIX by exept class: EditTextViewCompletionSupport changed: #openCompletionView:
EditTextViewCompletionSupport.st
--- a/EditTextViewCompletionSupport.st	Sat Nov 16 22:17:50 2019 +0100
+++ b/EditTextViewCompletionSupport.st	Sun Nov 24 16:17:37 2019 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "{ Package: 'stx:libwidg' }"
 
 "{ NameSpace: Smalltalk }"
@@ -505,7 +503,9 @@
     ].
     
     topView ~~ completionView ifTrue:[
-        self adjustSizeOfCompletionView:topView.
+        topView shown ifTrue:[
+            self adjustSizeOfCompletionView:topView.
+        ].
     ].
 
     "Created: / 26-09-2013 / 17:07:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"