[gimp/gtk3-port: 195/228] app: increase the priority of the theme CSS by 1
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gtk3-port: 195/228] app: increase the priority of the theme CSS by 1
- Date: Wed, 2 Apr 2014 00:07:31 +0000 (UTC)
commit 17ef8eb9c5779db767b8e325610e7dd1b7c30d57
Author: Michael Natterer <mitch gimp org>
Date: Tue Feb 8 14:20:30 2011 +0100
app: increase the priority of the theme CSS by 1
so it overrides widget-provided default CSS.
app/gui/themes.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/app/gui/themes.c b/app/gui/themes.c
index 54a38ee..73cec13 100644
--- a/app/gui/themes.c
+++ b/app/gui/themes.c
@@ -92,9 +92,12 @@ themes_init (Gimp *gimp)
themes_style_provider = GTK_STYLE_PROVIDER (gtk_css_provider_new ());
+ /* Use GTK_STYLE_PROVIDER_PRIORITY_APPLICATION + 1 so theme files
+ * override default styles provided by widgets themselves.
+ */
gtk_style_context_add_provider_for_screen (gdk_screen_get_default (),
themes_style_provider,
- GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
+ GTK_STYLE_PROVIDER_PRIORITY_APPLICATION + 1);
g_object_unref (themes_style_provider);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]