diff options
author | Xan Lopez <xan@igalia.com> | 2012-06-14 13:32:26 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-06-14 13:40:16 +0800 |
commit | 4873a591b6e90a6df99e7d0965c93b74bf4fec85 (patch) | |
tree | b22a3b94369bdd343eae2e44e2b5303c96a3560d /src/ephy-session.c | |
parent | 600192397f1a70f56f8c592353e40fe213aa3157 (diff) | |
download | gsoc2013-epiphany-4873a591b6e90a6df99e7d0965c93b74bf4fec85.tar gsoc2013-epiphany-4873a591b6e90a6df99e7d0965c93b74bf4fec85.tar.gz gsoc2013-epiphany-4873a591b6e90a6df99e7d0965c93b74bf4fec85.tar.bz2 gsoc2013-epiphany-4873a591b6e90a6df99e7d0965c93b74bf4fec85.tar.lz gsoc2013-epiphany-4873a591b6e90a6df99e7d0965c93b74bf4fec85.tar.xz gsoc2013-epiphany-4873a591b6e90a6df99e7d0965c93b74bf4fec85.tar.zst gsoc2013-epiphany-4873a591b6e90a6df99e7d0965c93b74bf4fec85.zip |
Add a new mode for shell testing, EPHY_EMBED_SHELL_MODE_TEST
For now the only difference is that no top-level window will be shown
in this mode, but in the future it can be extended to behave in a
manner appropriate for testing.
Diffstat (limited to 'src/ephy-session.c')
-rw-r--r-- | src/ephy-session.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/ephy-session.c b/src/ephy-session.c index 642ba686d..70af83ca7 100644 --- a/src/ephy-session.c +++ b/src/ephy-session.c @@ -1142,9 +1142,12 @@ ephy_session_load_from_string (EphySession *session, } } - active_child = ephy_embed_container_get_active_child (EPHY_EMBED_CONTAINER (window)); - gtk_widget_grab_focus (GTK_WIDGET (active_child)); - gtk_widget_show (widget); + if (ephy_embed_shell_get_mode (embed_shell) != EPHY_EMBED_SHELL_MODE_TEST) + { + active_child = ephy_embed_container_get_active_child (EPHY_EMBED_CONTAINER (window)); + gtk_widget_grab_focus (GTK_WIDGET (active_child)); + gtk_widget_show (widget); + } } else if (xmlStrEqual (child->name, (const xmlChar *) "toolwindow")) { |