1
0

rename qt gui -> classic

This commit is contained in:
thomasv
2012-10-19 10:26:35 +02:00
parent 025e10d569
commit c5f5e92d17
4 changed files with 9 additions and 9 deletions

View File

@@ -158,13 +158,13 @@ if __name__ == '__main__':
#this entire if/else block is just concerned with importing the
#right GUI toolkit based the GUI command line option given
if cmd == 'gui':
pref_gui = config.get('gui','qt')
pref_gui = config.get('gui','classic')
if pref_gui == 'gtk':
try:
import lib.gui as gui
except ImportError:
import electrum.gui as gui
elif pref_gui == 'qt':
elif pref_gui in ['classic', 'qt']:
try:
import lib.gui_qt as gui
except ImportError: