From eedbe9df31f790e466dc92948550128804be524a Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 8 Nov 2009 22:46:49 +0000 Subject: [PATCH] Don't display window by default, unless "Visible = true" is called. Allows the creation of invisible windows for secondary GraphicsContexts. --- Source/OpenTK/Platform/X11/X11GLNative.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/OpenTK/Platform/X11/X11GLNative.cs b/Source/OpenTK/Platform/X11/X11GLNative.cs index fd12e697..03ab8d29 100644 --- a/Source/OpenTK/Platform/X11/X11GLNative.cs +++ b/Source/OpenTK/Platform/X11/X11GLNative.cs @@ -175,8 +175,6 @@ namespace OpenTK.Platform.X11 // Register for window destroy notification Functions.XSetWMProtocols(window.Display, window.WindowHandle, new IntPtr[] { _atom_wm_destroy }, 1); - - API.MapRaised(window.Display, window.WindowHandle); } driver = new X11Input(window);