Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorRoss Burton <ross@openedhand.com>2007-05-12 11:32:01 (GMT)
committer Ross Burton <rburton@src.gnome.org>2007-05-12 11:32:01 (GMT)
commite201a8febb351c61a8e7714c2dbc83173575c8c6 (patch)
tree02932ea216e285a37fd4214696b67b2e8e6e6ff5 /shell
parent0a71e82d1e6ca31f6e00a5b22ede0ccdc9913c35 (diff)
Respect the screen when opening help (#437866).
2007-05-12 Ross Burton <ross@openedhand.com> * shell/ev-window.c: Respect the screen when opening help (#437866). svn path=/trunk/; revision=2451
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-window.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 079cb1c..9615c9a 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -3168,6 +3168,7 @@ static void
ev_window_cmd_help_contents (GtkAction *action, EvWindow *ev_window)
{
GError *error = NULL;
+ GdkScreen *screen;
char *command;
const char *lang;
char *uri = NULL;
@@ -3201,7 +3202,8 @@ ev_window_cmd_help_contents (GtkAction *action, EvWindow *ev_window)
command = g_strconcat ("gnome-help ghelp://", uri, NULL);
g_free (uri);
- g_spawn_command_line_async (command, &error);
+ screen = gtk_widget_get_screen (GTK_WIDGET (ev_window));
+ gdk_spawn_command_line_on_screen (screen, command, &error);
if (error != NULL) {
g_warning (error->message);
g_error_free (error);