DisplayRootView.st
branchjv
changeset 7317 cea144a15948
parent 7287 1e2a3258dd8a
child 7715 925b859e1758
--- a/DisplayRootView.st	Tue Apr 26 07:15:31 2016 +0100
+++ b/DisplayRootView.st	Tue Apr 26 21:07:17 2016 +0100
@@ -11,8 +11,6 @@
 "
 "{ Package: 'stx:libview' }"
 
-"{ NameSpace: Smalltalk }"
-
 DisplaySurface subclass:#DisplayRootView
 	instanceVariableNames:''
 	classVariableNames:''
@@ -86,7 +84,7 @@
     [author:]
         Claus Gittinger
 "
-! !
+!
 
 !DisplayRootView class methodsFor:'instance creation'!
 
@@ -154,25 +152,6 @@
     "ignored"
 ! !
 
-!DisplayRootView methodsFor:'event handling'!
-
-waitForExpose
-    "wait until an expose event arrives (to wait for scroll-finish)"
-
-    "/ JV@2016-02-22: On X11, expose for root window may not arrive at all
-    "/ causing 3 seconds delay. Worse, this breaks drag'n'drop.
-    "/ The reason is that when running under compositing window manager, 
-    "/ (such as GNOME shell or KWM), window contents ir rendered to an
-    "/ off-screen pixmap so expose events are lot less common and may
-    "/ not arrive.
-    device isX11Platform ifTrue:[ 
-        ^ self.
-    ].
-    super waitForExpose.
-
-    "Created: / 22-02-2016 / 14:24:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-! !
-
 !DisplayRootView methodsFor:'hotkeys'!
 
 addHotKeyHandler:handler forKey:aKey modifierMask:optionalModifierMaskOrNil
@@ -310,10 +289,5 @@
 
 version
     ^ '$Header$'
-!
-
-version_HG
-
-    ^ '$Changeset: <not expanded> $'
 ! !