From 01ad8968be0f72ddddac26eb6e1bd6f98d826a6f Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Fri, 20 Oct 2006 16:34:42 +0200 Subject: [PATCH] Tweak address entry length --- activities/web/toolbar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activities/web/toolbar.py b/activities/web/toolbar.py index 38dd3fb2..f66b7d9d 100644 --- a/activities/web/toolbar.py +++ b/activities/web/toolbar.py @@ -56,7 +56,7 @@ class Toolbar(gtk.Toolbar): self._entry = AddressEntry() self._entry.connect("activate", self._entry_activate_cb) - width = int(gtk.gdk.screen_width() / 3 * 2) + width = int(gtk.gdk.screen_width() / 1.8) self._entry.set_size_request(width, -1) address_item.add(self._entry)