@b4n commented on this pull request.
> - * { 0, 19, "geany-3.0.css" },
- */
- };
-
- guint gtk_version = gtk_get_minor_version();
- for (guint i = 0; i < G_N_ELEMENTS(css_files); i++)
- {
- if (gtk_version >= css_files[i].min_version &&
- gtk_version <= css_files[i].max_version)
- {
- theme_fn = g_build_filename(app->datadir,
css_files[i].file, NULL);
- load_css_theme(theme_fn,
GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
- g_free(theme_fn);
- }
- }
-
Yeah I figured, but if we actually do need it at some point, we can resurrect
it -- or reinvent the wheel.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3665#discussion_r1380832068
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3665/review/[email protected]>