aboutsummaryrefslogtreecommitdiff
path: root/onionshare_gui/tab/tab.py
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2019-10-27 15:26:56 -0700
committerMicah Lee <micah@micahflee.com>2019-10-27 15:26:56 -0700
commit656d3d1564503898df493e015b5c27184fc168a6 (patch)
treed7acc818d6b24291ae0aaf295eb82ae73e567f6a /onionshare_gui/tab/tab.py
parentcb83fca6bc9f53f87d65ada16ed437a30634f889 (diff)
downloadonionshare-656d3d1564503898df493e015b5c27184fc168a6.tar.gz
onionshare-656d3d1564503898df493e015b5c27184fc168a6.zip
Add settings button to the status bar
Diffstat (limited to 'onionshare_gui/tab/tab.py')
-rw-r--r--onionshare_gui/tab/tab.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/onionshare_gui/tab/tab.py b/onionshare_gui/tab/tab.py
index b9416bc7..8cdf3afa 100644
--- a/onionshare_gui/tab/tab.py
+++ b/onionshare_gui/tab/tab.py
@@ -103,17 +103,6 @@ class Tab(QtWidgets.QWidget):
self.new_tab.setLayout(new_tab_outer_layout)
self.new_tab.show()
- # Settings button, but this is gonna disappear
- self.settings_button = QtWidgets.QPushButton()
- self.settings_button.setDefault(False)
- self.settings_button.setFixedWidth(40)
- self.settings_button.setFixedHeight(50)
- self.settings_button.setIcon(
- QtGui.QIcon(self.common.get_resource_path("images/settings.png"))
- )
- # self.settings_button.clicked.connect(self.open_settings)
- self.settings_button.setStyleSheet(self.common.gui.css["settings_button"])
-
# Server status indicator icons
self.status_bar.server_status_image_stopped = QtGui.QImage(
self.common.get_resource_path("images/server_stopped.png")