diff options
-rw-r--r-- | src/ephy-shell.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 40d2f7286..8a29994c2 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -225,7 +225,13 @@ show_about (GSimpleAction *action, GVariant *parameter, gpointer user_data) { - window_cmd_help_about (NULL, NULL); + EphySession *session; + EphyWindow *window; + + session = EPHY_SESSION (ephy_shell_get_session (ephy_shell)); + window = ephy_session_get_active_window (session); + + window_cmd_help_about (NULL, GTK_WIDGET (window)); } static void |