From 8d82c01e2af82eb9200285c2650f4be7efe0193b Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Sat, 27 May 2017 20:38:46 +1000 Subject: [PATCH] Remove border around items in the QStatusBar --- onionshare_gui/onionshare_gui.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/onionshare_gui/onionshare_gui.py b/onionshare_gui/onionshare_gui.py index 166700e1..c29232fa 100644 --- a/onionshare_gui/onionshare_gui.py +++ b/onionshare_gui/onionshare_gui.py @@ -101,6 +101,8 @@ class OnionShareGui(QtWidgets.QMainWindow): # Status bar self.status_bar = QtWidgets.QStatusBar() self.status_bar.setSizeGripEnabled(False) + self.status_bar.setStyleSheet( + "QStatusBar::item { border: 0px; }") version_label = QtWidgets.QLabel('v{0:s}'.format(common.get_version())) version_label.setStyleSheet('color: #666666') self.settings_button = QtWidgets.QPushButton()