diff options
author | lukefromdc <[email protected]> | 2018-04-26 00:04:32 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-04-26 13:01:37 +0200 |
commit | 38dbd34c9191c9047d7f6151570ad351f85e17eb (patch) | |
tree | ee03234b9507d36ebbc795b3f27e5e2062dc84e7 | |
parent | 217044626cf1aef24ff3090d8d8ce4f380f48658 (diff) | |
download | mate-panel-38dbd34c9191c9047d7f6151570ad351f85e17eb.tar.bz2 mate-panel-38dbd34c9191c9047d7f6151570ad351f85e17eb.tar.xz |
css: use parsing-error signal to warn on bad css file or image
Thanks to Alberts Muktupāvels for this code
-rw-r--r-- | mate-panel/main.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mate-panel/main.c b/mate-panel/main.c index 825ec348..0c98be8b 100644 --- a/mate-panel/main.c +++ b/mate-panel/main.c @@ -55,6 +55,15 @@ static const GOptionEntry options[] = { { NULL } }; +static void +parsing_error_cb (GtkCssProvider *provider, + GtkCssSection *section, + GError *error, + gpointer user_data) +{ + g_warning ("Can't parse mate-panel's CSS custom description: %s\n", error->message); +} + int main (int argc, char **argv) { @@ -178,6 +187,8 @@ main (int argc, char **argv) resource = "/org/mate/panel/theme/mate-panel.css"; priority = GTK_STYLE_PROVIDER_PRIORITY_FALLBACK; + g_signal_connect (provider, "parsing-error", G_CALLBACK (parsing_error_cb), NULL); + gtk_css_provider_load_from_resource (css, resource); gtk_style_context_add_provider_for_screen (screen, provider, priority); |