From 065199b7ef871f449521e918b5e1db4702daf6b7 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Fri, 21 Dec 2012 14:42:54 +0000 Subject: [PATCH] default to enable opengl since this now works very well! git-svn-id: https://xpra.org/svn/Xpra/trunk@2333 3bb7dfac-3a0b-4e04-842a-767bc560f471 --- src/xpra/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xpra/client.py b/src/xpra/client.py index 0e170b4c1b..6896a5e2eb 100644 --- a/src/xpra/client.py +++ b/src/xpra/client.py @@ -85,7 +85,7 @@ def set_windows_cursor(gtkwindows, new_cursor): from xpra.protocol import Compressed from xpra.client_window import ClientWindow -USE_OPENGL = os.environ.get("XPRA_OPENGL", "0")=="1" +USE_OPENGL = os.environ.get("XPRA_OPENGL", "1")=="1" GLClientWindowClass = None #the GL backend only works with gtk2: if USE_OPENGL and not is_gtk3():