A suggestion, for
[src/about.c](https://github.com/geany/geany/blob/master/src/about.c), instead
of a custom window, can you use _gtk_show_about_dialog_ to display a
[standardized about
dialog](https://developer.gnome.org/gtk3/stable/GtkAboutDialog.html)?
gtk_show_about_dialog (GTK_WINDOW (window),
"version", VERSION,
"comments", "Geany...",
"website", "https://www.geany.org",
"copyright", "Copyright...",
"icon-name", "geany",
"logo-icon-name", "geany",
"license", "...",
"wrap-license", TRUE,
NULL);
An example:

--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/2451