From eb9dc99a1907ed69917c5f0c56aeb2093648ec30 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Mon, 18 May 2015 11:05:33 -0700 Subject: [PATCH] URL display is no longer tiny, and window gets autoresized if URL is too big (fixes #183) --- onionshare_gui/server_status.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/onionshare_gui/server_status.py b/onionshare_gui/server_status.py index efb481fe..579e2e8f 100644 --- a/onionshare_gui/server_status.py +++ b/onionshare_gui/server_status.py @@ -56,7 +56,6 @@ class ServerStatus(QtGui.QVBoxLayout): # url layout url_font = QtGui.QFont() - url_font.setPointSize(8) self.url_label = QtGui.QLabel() self.url_label.setFont(url_font) self.url_label.setWordWrap(True) @@ -87,6 +86,10 @@ class ServerStatus(QtGui.QVBoxLayout): self.url_label.setText('http://{0:s}/ {1:s}'.format(self.app.onion_host, self.web.slug)) self.url_label.show() self.copy_url_button.show() + + # resize parent widget + p = self.parentWidget() + p.resize(p.sizeHint()) else: self.url_label.hide() self.copy_url_button.hide()