From 5ea74c522ddc6149c426853d1ba93977490a6650 Mon Sep 17 00:00:00 2001 From: Peter Hofmann Date: Tue, 14 Jun 2016 19:29:48 +0200 Subject: 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. --- browser.c | 1 - 1 file changed, 1 deletion(-) (limited to 'browser.c') 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); -- cgit v1.2.3