Merge branch '1148' into upstream-v0.6

This commit is contained in:
Peter Šurda 2018-03-29 07:34:48 +02:00
commit 50ccb897fc
Signed by untrusted user: PeterSurda
GPG Key ID: 0C5F50C0B5F37D87
1 changed files with 16 additions and 15 deletions

View File

@ -798,22 +798,19 @@ class MyForm(settingsmixin.SMainWindow):
"valueChanged(int)"), self.updateTTL) "valueChanged(int)"), self.updateTTL)
self.initSettings() self.initSettings()
# Check to see whether we can connect to namecoin. Hide the 'Fetch Namecoin ID' button if we can't. self.namecoin = namecoinConnection()
try:
options = {} # Check to see whether we can connect to namecoin.
options["type"] = BMConfigParser().get('bitmessagesettings', 'namecoinrpctype') # Hide the 'Fetch Namecoin ID' button if we can't.
options["host"] = BMConfigParser().get('bitmessagesettings', 'namecoinrpchost') if BMConfigParser().safeGetBoolean(
options["port"] = BMConfigParser().get('bitmessagesettings', 'namecoinrpcport') 'bitmessagesettings', 'dontconnect'
options["user"] = BMConfigParser().get('bitmessagesettings', 'namecoinrpcuser') ) or self.namecoin.test()[0] == 'failed':
options["password"] = BMConfigParser().get('bitmessagesettings', 'namecoinrpcpassword') logger.warning(
nc = namecoinConnection(options) 'There was a problem testing for a Namecoin daemon. Hiding the'
if nc.test()[0] == 'failed': ' Fetch Namecoin ID button')
self.ui.pushButtonFetchNamecoinID.hide()
except:
logger.error('There was a problem testing for a Namecoin daemon. Hiding the Fetch Namecoin ID button')
self.ui.pushButtonFetchNamecoinID.hide() self.ui.pushButtonFetchNamecoinID.hide()
def updateTTL(self, sliderPosition): def updateTTL(self, sliderPosition):
TTL = int(sliderPosition ** 3.199 + 3600) TTL = int(sliderPosition ** 3.199 + 3600)
self.updateHumanFriendlyTTLDescription(TTL) self.updateHumanFriendlyTTLDescription(TTL)
@ -2691,6 +2688,10 @@ class MyForm(settingsmixin.SMainWindow):
BMConfigParser().save() BMConfigParser().save()
self.ui.updateNetworkSwitchMenuLabel(dontconnect_option) self.ui.updateNetworkSwitchMenuLabel(dontconnect_option)
self.ui.pushButtonFetchNamecoinID.setHidden(
dontconnect_option or self.namecoin.test()[0] == 'failed'
)
# Quit selected from menu or application indicator # Quit selected from menu or application indicator
def quit(self): def quit(self):
'''quit_msg = "Are you sure you want to exit Bitmessage?" '''quit_msg = "Are you sure you want to exit Bitmessage?"