diff --git a/onionshare_gui/server_status.py b/onionshare_gui/server_status.py index 3f7e390c..1aff79f4 100644 --- a/onionshare_gui/server_status.py +++ b/onionshare_gui/server_status.py @@ -84,10 +84,14 @@ class ServerStatus(QtWidgets.QWidget): # URL layout url_font = QtGui.QFont() self.url_description = QtWidgets.QLabel(strings._('gui_url_description', True)) + self.url_description.setWordWrap(True) + self.url_description.setMinimumHeight(50) self.url_label = QtWidgets.QLabel() self.url_label.setStyleSheet('QLabel { color: #666666; font-size: 12px; }') self.url = QtWidgets.QLabel() self.url.setFont(url_font) + self.url.setWordWrap(True) + self.url.setMinimumHeight(60) self.url.setStyleSheet('QLabel { background-color: #ffffff; color: #000000; padding: 10px; border: 1px solid #666666; }') url_buttons_style = 'QPushButton { color: #3f7fcf; }'