After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 642400 - gtk_show_about_dialog() produces ugly result
gtk_show_about_dialog() produces ugly result
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: .General
3.0.x
Other Linux
: Normal normal
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2011-02-15 17:14 UTC by Milan Crha
Modified: 2014-05-22 00:28 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
gtk2 versus gtk3 Help->About (37.58 KB, image/png)
2011-02-15 17:14 UTC, Milan Crha
Details

Description Milan Crha 2011-02-15 17:14:43 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);
Comment 1 Matthias Clasen 2014-05-22 00:28:21 UTC
all of this looks pretty different now