openbsd-ports/x11/driconf/patches/patch-driconf_complexui_py
wcmaier a3a6c543eb DRIconf is a configuration applet for the Direct Rendering
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@
2008-07-11 13:07:54 +00:00

18 lines
724 B
Plaintext

$OpenBSD: patch-driconf_complexui_py,v 1.1.1.1 2008/07/11 13:07:54 wcmaier Exp $
--- driconf_complexui.py.orig Mon Jul 7 08:30:04 2008
+++ driconf_complexui.py Mon Jul 7 08:29:55 2008
@@ -24,10 +24,10 @@ pygtk.require ("2.0")
import gtk
import gobject
-import driconf_commonui
-commonui = driconf_commonui # short cut
+import commonui
+#commonui = driconf_commonui # short cut
-from driconf_commonui import _, lang, findInShared, escapeMarkup, WrappingCheckButton, SectionPage, UnknownSectionPage
+from commonui import _, lang, findInShared, escapeMarkup, WrappingCheckButton, SectionPage, UnknownSectionPage
class DriverPanel (gtk.Frame):
""" Panel for driver settings for a specific application. """