> @@ -2477,10 +2477,24 @@ void ui_init_builder(void)
>  static void init_custom_style(void)
>  {
>  #if GTK_CHECK_VERSION(3, 0, 0)
> -     gchar *css_file = g_build_filename(app->datadir, "geany.css", NULL);
> +     const struct {
> +             guint version;
> +             const gchar *file;
> +     } css_files[] = {
> +             { 20, "geany-3.20.css" },
> +             { 0, "geany-3.0.css" },

It might also be worth putting a comment on these initializers telling that 
they must be in descending order and that the one with 0 for the `version` must 
be last, as eluded to in the `while` loop comment below.

---
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/pull/994/files/ca8f6f2094cde6f238f37341df94c57ae065cb03#r59690711

Reply via email to