summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaptak S <saptak013@gmail.com>2020-09-10 12:06:03 +0530
committerSaptak S <saptak013@gmail.com>2020-09-10 12:07:16 +0530
commita1604a5a726832787e390a7ec8ace03ea4dc42de (patch)
tree11028a54e20023abbe80d92f3b60cc5ffbe654bc
parent12c7548c08e84c607f3d591a875d21809cf501d2 (diff)
downloadonionshare-a1604a5a726832787e390a7ec8ace03ea4dc42de.tar.gz
onionshare-a1604a5a726832787e390a7ec8ace03ea4dc42de.zip
Makes history panel full height in share and website mode
-rw-r--r--onionshare_gui/tab/mode/share_mode/__init__.py2
-rw-r--r--onionshare_gui/tab/mode/website_mode/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/onionshare_gui/tab/mode/share_mode/__init__.py b/onionshare_gui/tab/mode/share_mode/__init__.py
index ca6c4f40..26788467 100644
--- a/onionshare_gui/tab/mode/share_mode/__init__.py
+++ b/onionshare_gui/tab/mode/share_mode/__init__.py
@@ -155,6 +155,7 @@ class ShareMode(Mode):
self.main_layout.addLayout(top_bar_layout)
self.main_layout.addLayout(self.file_selection)
self.main_layout.addWidget(self.primary_action)
+ self.main_layout.addWidget(self.server_status)
self.main_layout.addWidget(MinimumWidthWidget(700))
# Column layout
@@ -165,7 +166,6 @@ class ShareMode(Mode):
# Wrapper layout
self.wrapper_layout = QtWidgets.QVBoxLayout()
self.wrapper_layout.addLayout(self.column_layout)
- self.wrapper_layout.addWidget(self.server_status)
self.setLayout(self.wrapper_layout)
# Always start with focus on file selection
diff --git a/onionshare_gui/tab/mode/website_mode/__init__.py b/onionshare_gui/tab/mode/website_mode/__init__.py
index 45316c7e..47a7376a 100644
--- a/onionshare_gui/tab/mode/website_mode/__init__.py
+++ b/onionshare_gui/tab/mode/website_mode/__init__.py
@@ -155,6 +155,7 @@ class WebsiteMode(Mode):
self.main_layout.addLayout(top_bar_layout)
self.main_layout.addLayout(self.file_selection)
self.main_layout.addWidget(self.primary_action)
+ self.main_layout.addWidget(self.server_status)
self.main_layout.addWidget(MinimumWidthWidget(700))
# Column layout
@@ -165,7 +166,6 @@ class WebsiteMode(Mode):
# Wrapper layout
self.wrapper_layout = QtWidgets.QVBoxLayout()
self.wrapper_layout.addLayout(self.column_layout)
- self.wrapper_layout.addWidget(self.server_status)
self.setLayout(self.wrapper_layout)
# Always start with focus on file selection