added settingsupdate of existing setting files.
This commit is contained in:
parent
0195f97789
commit
a6615685aa
|
@ -117,9 +117,9 @@ class MyForm(QtGui.QMainWindow):
|
|||
|
||||
self.ui.labelSendBroadcastWarning.setVisible(False)
|
||||
self.ui.removeBeforeSend.setChecked(shared.config.getboolean('bitmessagesettings',
|
||||
'removebeforesend'))
|
||||
'removebeforesend'))
|
||||
self.ui.pushButtonSend.setEnabled(not shared.config.getboolean('bitmessagesettings',
|
||||
'removebeforesend'))
|
||||
'removebeforesend'))
|
||||
|
||||
# FILE MENU and other buttons
|
||||
QtCore.QObject.connect(self.ui.actionExit, QtCore.SIGNAL(
|
||||
|
|
|
@ -207,8 +207,8 @@ class sqlThread(threading.Thread):
|
|||
|
||||
if not shared.config.has_option('bitmessagesettings', 'userlocale'):
|
||||
shared.config.set('bitmessagesettings', 'userlocale', 'system')
|
||||
if not shared.config.has_option('bitmessagesettings', 'removebeforesending'):
|
||||
shared.config.set('bitmessagesettings', 'removebeforesending', 'false')
|
||||
if not shared.config.has_option('bitmessagesettings', 'removebeforesend'):
|
||||
shared.config.set('bitmessagesettings', 'removebeforesend', 'false')
|
||||
if not shared.config.has_option('bitmessagesettings', 'sendoutgoingconnections'):
|
||||
shared.config.set('bitmessagesettings', 'sendoutgoingconnections', 'True')
|
||||
|
||||
|
|
Reference in New Issue
Block a user