Receive mode and chat mode are also looking awesome

This commit is contained in:
Micah Lee 2020-08-20 17:44:49 -04:00
parent 327253fc26
commit f65e7a3507
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
7 changed files with 52 additions and 23 deletions

View file

@ -129,8 +129,12 @@ class ServerStatus(QtWidgets.QWidget):
url_layout.addLayout(url_buttons_layout)
# Add the widgets
button_layout = QtWidgets.QHBoxLayout()
button_layout.addWidget(self.server_button)
button_layout.addStretch()
layout = QtWidgets.QVBoxLayout()
layout.addWidget(self.server_button)
layout.addLayout(button_layout)
layout.addLayout(url_layout)
self.setLayout(layout)