Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--shell/ev-window.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 98c8083..843568b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-05-12 Ross Burton <ross@openedhand.com>
+
+ * shell/ev-window.c:
+ Respect the screen when opening help (#437866).
+
2007-05-11 Carlos Garcia Campos <carlosgc@gnome.org>
* data/evince-ui.xml:
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);