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:
![about](https://user-images.githubusercontent.com/31816829/76688425-d4065380-662c-11ea-9b10-97d098eaf281.png)

-- 
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

Reply via email to