diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-11-01 22:48:55 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-11-01 22:48:55 +0800 |
commit | 748a94321a69d4220b97d75cc5e64aa15a2112c7 (patch) | |
tree | 26d0d208de9f4206e6c9d1baf3ad7a1ef26e0fc0 /src/ephy-location-action.c | |
parent | 57730e8161a159fdb5a38b9dd0d19dda3bdde8e5 (diff) | |
download | gsoc2013-epiphany-748a94321a69d4220b97d75cc5e64aa15a2112c7.tar.gz gsoc2013-epiphany-748a94321a69d4220b97d75cc5e64aa15a2112c7.tar.zst gsoc2013-epiphany-748a94321a69d4220b97d75cc5e64aa15a2112c7.zip |
Don't deactivate the toolbar when another item in the same toolbar gains
2004-11-01 Christian Persch <chpe@cvs.gnome.org>
* lib/widgets/ephy-location-entry.c: (ephy_location_entry_init),
(ephy_location_entry_activate):
* src/ephy-location-action.c: (ephy_location_action_class_init):
* src/ephy-window.c: (ephy_window_init):
* src/toolbar.c: (toolbar_class_init), (toolbar_finalize),
(maybe_finish_activation_cb), (toolbar_activate_location),
(toolbar_update_zoom), (toolbar_new):
* src/toolbar.h:
Don't deactivate the toolbar when another item in the same toolbar
gains focus. Fixes bug #155650.
Diffstat (limited to 'src/ephy-location-action.c')
-rw-r--r-- | src/ephy-location-action.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/ephy-location-action.c b/src/ephy-location-action.c index eae9a6a6b..505a82b7e 100644 --- a/src/ephy-location-action.c +++ b/src/ephy-location-action.c @@ -328,20 +328,6 @@ ephy_location_action_get_property (GObject *object, } static void -ephy_location_action_activate (GtkAction *action) -{ - GSList *proxies; - - /* Note: this makes sense only for a single proxy */ - proxies = gtk_action_get_proxies (action); - - if (proxies && EPHY_IS_LOCATION_ENTRY (proxies->data)) - { - ephy_location_entry_activate (EPHY_LOCATION_ENTRY (proxies->data)); - } -} - -static void ephy_location_action_class_init (EphyLocationActionClass *class) { GObjectClass *object_class = G_OBJECT_CLASS (class); @@ -356,7 +342,6 @@ ephy_location_action_class_init (EphyLocationActionClass *class) action_class->toolbar_item_type = EPHY_TYPE_LOCATION_ENTRY; action_class->connect_proxy = connect_proxy; action_class->disconnect_proxy = disconnect_proxy; - action_class->activate = ephy_location_action_activate; signals[GO_LOCATION] = g_signal_new ("go_location", |