summaryrefslogtreecommitdiff
path: root/browser.c
diff options
context:
space:
mode:
authorPeter Hofmann <scm@uninformativ.de>2016-06-14 19:29:48 +0200
committerPeter Hofmann <scm@uninformativ.de>2016-06-14 19:29:48 +0200
commit5ea74c522ddc6149c426853d1ba93977490a6650 (patch)
tree4bfe9231dba4822e10f8b2f1dbb5cc9ffcc3a07b /browser.c
parenteee4c98bc27d2e9c2512bbb7828acd7a996f2251 (diff)
downloadlariza-5ea74c522ddc6149c426853d1ba93977490a6650.tar.gz
Remove size request for the progress bar
I'm not comfortable with having pixel values in here. The 100px were mostly personal taste. HiDPI screens might not be happy with 100px anyway.
Diffstat (limited to 'browser.c')
-rw-r--r--browser.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/browser.c b/browser.c
index 44fe596..e174791 100644
--- a/browser.c
+++ b/browser.c
@@ -204,7 +204,6 @@ client_new(const gchar *uri)
* are a dirty workaround (kind of). */
c->progress = gtk_level_bar_new();
gtk_level_bar_set_value(GTK_LEVEL_BAR(c->progress), 1);
- gtk_widget_set_size_request(c->progress, 100, -1);
c->top_box = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
gtk_box_pack_start(GTK_BOX(c->top_box), c->location, TRUE, TRUE, 0);