a3a6c543eb
Infrastructure. It allows customizing performance and visual quality settings of OpenGL drivers on a per-driver, per-screen and/or per-application level. The settings are stored in system wide and per-user XML configuration files, which are parsed by the OpenGL drivers on startup. Originally by oga@; tested by oga@ and guenther@. Python jiggery and other cleanups by moi. double ok fgsch@, ribbit landry@
22 lines
651 B
Plaintext
22 lines
651 B
Plaintext
$OpenBSD: patch-driconf_simpleui_py,v 1.1.1.1 2008/07/11 13:07:54 wcmaier Exp $
|
|
--- driconf_simpleui.py.orig Mon Jul 7 08:30:20 2008
|
|
+++ driconf_simpleui.py Mon Jul 7 08:30:36 2008
|
|
@@ -25,12 +25,12 @@ pygtk.require ("2.0")
|
|
import gtk
|
|
import gobject
|
|
|
|
-import driconf_commonui
|
|
-import driconf_complexui
|
|
-commonui = driconf_commonui # short cut
|
|
-complexui = driconf_complexui
|
|
+import commonui
|
|
+import complexui
|
|
+#commonui = driconf_commonui # short cut
|
|
+#complexui = driconf_complexui
|
|
|
|
-from driconf_commonui import _, lang
|
|
+from commonui import _, lang
|
|
|
|
def isUserConfig(config):
|
|
return config.fileName.startswith(os.environ["HOME"])
|