Skip to content

Commit

Permalink
ishell: Make the about dialog non modal
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Garcia Campos committed May 10, 2014
1 parent 8b965e7 commit 94e06be
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions shell/ev-window.c
Original file line number Diff line number Diff line change
Expand Up @@ -5087,21 +5087,19 @@ ev_window_cmd_help_about (GtkAction *action, EvWindow *ev_window)

comments = build_comments_string (ev_window->priv->document);

gtk_show_about_dialog (
GTK_WINDOW (ev_window),
"name", _("Evince"),
"version", VERSION,
"copyright",
_("© 1996–2012 The Evince authors"),
"license", license_trans,
"website", "http://www.gnome.org/projects/evince",
"comments", comments,
"authors", authors,
"documenters", documenters,
"translator-credits", _("translator-credits"),
"logo-icon-name", "evince",
"wrap-license", TRUE,
NULL);
gtk_show_about_dialog (NULL,
"name", _("Evince"),
"version", VERSION,
"copyright", _("© 1996–2012 The Evince authors"),
"license", license_trans,
"website", "http://www.gnome.org/projects/evince",
"comments", comments,
"authors", authors,
"documenters", documenters,
"translator-credits", _("translator-credits"),
"logo-icon-name", "evince",
"wrap-license", TRUE,
NULL);

g_free (comments);
g_free (license_trans);
Expand Down

0 comments on commit 94e06be

Please sign in to comment.