aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-shell.c
diff options
context:
space:
mode:
authorCrispin Flowerday <gnome@flowerday.cx>2005-07-30 04:40:38 +0800
committerCrispin Flowerday <crispin@src.gnome.org>2005-07-30 04:40:38 +0800
commit2288a93ec9575af249f9c6aaa1667730d2c9950f (patch)
tree6293cd6691462759890f00c0a618d52b1940a942 /src/ephy-shell.c
parente2cbc7c8a624845a93289945243348762c1b2893 (diff)
downloadgsoc2013-epiphany-2288a93ec9575af249f9c6aaa1667730d2c9950f.tar
gsoc2013-epiphany-2288a93ec9575af249f9c6aaa1667730d2c9950f.tar.gz
gsoc2013-epiphany-2288a93ec9575af249f9c6aaa1667730d2c9950f.tar.bz2
gsoc2013-epiphany-2288a93ec9575af249f9c6aaa1667730d2c9950f.tar.lz
gsoc2013-epiphany-2288a93ec9575af249f9c6aaa1667730d2c9950f.tar.xz
gsoc2013-epiphany-2288a93ec9575af249f9c6aaa1667730d2c9950f.tar.zst
gsoc2013-epiphany-2288a93ec9575af249f9c6aaa1667730d2c9950f.zip
Replace ephy_embed_activate with gtk_widget_grab_focus
2005-07-29 Crispin Flowerday <gnome@flowerday.cx> * src/ephy-find-toolbar.c: (ephy_find_toolbar_grab_focus), (ephy_find_toolbar_open), (ephy_find_toolbar_close): * src/ephy-shell.c: (ephy_shell_new_tab_full): * src/ephy-tab.c: (ephy_tab_grab_focus): * src/ephy-window.c: (ephy_window_key_press_event), (ephy_window_open_link): * src/window-commands.c: (window_cmd_go_back), (window_cmd_go_up), (window_cmd_go_forward), (window_cmd_view_stop), (window_cmd_view_reload): Replace ephy_embed_activate with gtk_widget_grab_focus
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r--src/ephy-shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c
index 5d9aaed4a..9dec961e9 100644
--- a/src/ephy-shell.c
+++ b/src/ephy-shell.c
@@ -795,7 +795,7 @@ ephy_shell_new_tab_full (EphyShell *shell,
{
/* non-empty page, focus the page. but make sure the widget is realised first! */
gtk_widget_realize (GTK_WIDGET (embed));
- ephy_embed_activate (embed);
+ gtk_widget_grab_focus (GTK_WIDGET (embed));
}
}