X11: fixed initializion of `hasShmExtension` in `#initializeScreenProperties` jv
authorJan Vrany <jan.vrany@fit.cvut.cz>
Thu, 19 Jul 2018 20:54:26 +0100
branchjv
changeset 8452 6336f75507a0
parent 8429 e47f76ecf0d2
child 8491 c9d77af565d4
X11: fixed initializion of `hasShmExtension` in `#initializeScreenProperties` The extension name is 'MIT-SHM', not 'MIT_SHM'.
XWorkstation.st
--- a/XWorkstation.st	Tue Jul 17 08:03:06 2018 +0200
+++ b/XWorkstation.st	Thu Jul 19 20:54:26 2018 +0100
@@ -9517,7 +9517,7 @@
     super initializeScreenProperties.
 
     hasShapeExtension := self hasExtension:#SHAPE.
-    hasShmExtension := self hasExtension:#MIT_SHM.
+    hasShmExtension := self hasExtension:#'MIT-SHM'.
     hasDPSExtension := self hasExtension:#DPS.
     hasXVideoExtension := self hasExtension:#XVideo.
     hasMbufExtension := self hasExtension:#'Multi-Buffering'.