like the fixme says, re-enable handling of systems without gconf
This commit is contained in:
parent
660344a8b7
commit
61572e5531
15
terminator
15
terminator
|
@ -516,14 +516,13 @@ class Terminator:
|
|||
stores = []
|
||||
stores.append (terminatorconfig.TerminatorConfValuestoreRC ())
|
||||
|
||||
# FIXME: enable this again, we should trap and discard broken gconf stuff
|
||||
# try:
|
||||
import gconf
|
||||
store = terminatorconfig.TerminatorConfValuestoreGConf ()
|
||||
store.set_reconfigure_callback (self.reconfigure_vtes)
|
||||
stores.append (store)
|
||||
# except:
|
||||
# pass
|
||||
try:
|
||||
import gconf
|
||||
store = terminatorconfig.TerminatorConfValuestoreGConf ()
|
||||
store.set_reconfigure_callback (self.reconfigure_vtes)
|
||||
stores.append (store)
|
||||
except:
|
||||
pass
|
||||
|
||||
self.conf = terminatorconfig.TerminatorConfig (stores)
|
||||
|
||||
|
|
Loading…
Reference in New Issue