GNOME Bugzilla – Bug 642400
gtk_show_about_dialog() produces ugly result
Last modified: 2014-05-22 00:28:21 UTC
Created attachment 180927 [details] gtk2 versus gtk3 Help->About See the attached screenshot, the gtk2 Help->About of Evolutions (the left side) looks significantly better than the one from gtk3 (the right side). The code in use is the same in both cases: translator_credits = _("translator-credits"); if (strcmp (translator_credits, "translator-credits") == 0) translator_credits = NULL; gtk_show_about_dialog ( GTK_WINDOW (shell_window), "program-name", "Evolution", "version", VERSION, "copyright", EVOLUTION_COPYRIGHT, "comments", _("Groupware Suite"), "website", EVOLUTION_WEBSITE, "website-label", _("Evolution Website"), "authors", authors, "documenters", documenters, "translator-credits", translator_credits, "logo-icon-name", "evolution", NULL);
all of this looks pretty different now