mirror of
https://github.com/onionshare/onionshare.git
synced 2025-08-20 03:48:09 -04:00
Always show uploads and downloads
This commit is contained in:
parent
f32f710280
commit
c7a9db84d8
5 changed files with 7 additions and 3 deletions
|
@ -78,6 +78,10 @@ class Mode(QtWidgets.QWidget):
|
|||
# Layout
|
||||
self.layout = QtWidgets.QVBoxLayout()
|
||||
self.layout.addWidget(self.primary_action)
|
||||
# Hack to allow a minimum width on self.layout
|
||||
min_width_widget = QtWidgets.QWidget()
|
||||
min_width_widget.setMinimumWidth(450)
|
||||
self.layout.addWidget(min_width_widget)
|
||||
|
||||
self.horizontal_layout_wrapper = QtWidgets.QHBoxLayout()
|
||||
self.horizontal_layout_wrapper.addLayout(self.layout)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue