Skip to content

Commit

Permalink
inactive updater setting hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
m1lhaus committed Sep 28, 2016
1 parent d8be4a9 commit c1622d7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dialogs/settings_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,15 @@ def __init__(self, parent=None):

if not sys.platform.startswith('win') or not tools.IS_WIN32_EXE:
self.updaterLbl.setText(self.updaterLbl.text() + " " + tr['SETTINGS_UPDATES_DISABLED'])
self.updaterLbl.setVisible(False)
self.checkUpdatesChBox.setEnabled(False)
self.checkUpdatesChBox.setVisible(False)
self.downUpdatesChBox.setEnabled(False)
self.downUpdatesChBox.setVisible(False)
self.channelCombo.setEnabled(False)
self.channelCombo.setVisible(False)
self.channelLbl.setEnabled(False)
self.channelLbl.setVisible(False)

self.settings = QSettings()

Expand Down

0 comments on commit c1622d7

Please sign in to comment.