mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-11 04:02:40 -03:00
Need to actually ensure the dark settings icon is set back once server inactive again
This commit is contained in:
parent
e9120fd87e
commit
fccec9737d
1 changed files with 2 additions and 0 deletions
|
@ -445,6 +445,8 @@ class OnionShareGui(QtWidgets.QMainWindow):
|
|||
self.settings_button.setEnabled(not active)
|
||||
if active:
|
||||
self.settings_button.setIcon( QtGui.QIcon(common.get_resource_path('images/settings_inactive.png')) )
|
||||
else:
|
||||
self.settings_button.setIcon( QtGui.QIcon(common.get_resource_path('images/settings.png')) )
|
||||
|
||||
def closeEvent(self, e):
|
||||
common.log('OnionShareGui', 'closeEvent')
|
||||
|
|
Loading…
Reference in a new issue