summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-02-19 20:55:25 +0000
committerMatt Wilson <msw@redhat.com>2001-02-19 20:55:25 +0000
commit9cafeac96d244fa6ca7feb6f8a23079642f9b4cd (patch)
treebf9ca5d841aeef84afa97750dda0fb23dbde10a0 /gui.py
parentafc1efe38bf4eaf4bb6087e3f31b4fe54f26c7ce (diff)
downloadanaconda-9cafeac96d244fa6ca7feb6f8a23079642f9b4cd.tar.gz
anaconda-9cafeac96d244fa6ca7feb6f8a23079642f9b4cd.tar.xz
anaconda-9cafeac96d244fa6ca7feb6f8a23079642f9b4cd.zip
HACK ALERT! nuke the mtimes in internal structures...
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index a058a7cce..f0535c15d 100755
--- a/gui.py
+++ b/gui.py
@@ -7,6 +7,9 @@ from gtk import *
from gtk import _root_window
from _gtk import gtk_set_locale
from _gtk import gtk_rc_init
+from _gtk import gtk_rc_reparse_all
+from _gtk import _gtk_nuke_rc_files
+from _gtk import _gtk_nuke_rc_mtimes
import GdkImlib
from GDK import *
import time
@@ -383,8 +386,10 @@ class InstallControlWindow:
self.todo.instTimeLanguage.setRuntimeLanguage(lang)
gtk_set_locale ()
+ _gtk_nuke_rc_files ()
gtk_rc_init ()
-
+ gtk_rc_reparse_all ()
+
found = 0
for l in self.todo.instTimeLanguage.getCurrentLangSearchList():
if os.access ("/etc/gtk/gtkrc." + l, os.R_OK):
@@ -393,6 +398,9 @@ class InstallControlWindow:
if not found:
rc_parse("/etc/gtk/gtkrc")
+ _gtk_nuke_rc_mtimes ()
+ gtk_rc_reparse_all ()
+
if not self.__dict__.has_key('window'): return
self.window.reset_rc_styles ()