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 2d21964660
commit 1363d4101c
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)