From b898323bba7e8334f59cbe8551c3200fb441adf9 Mon Sep 17 00:00:00 2001 From: Mikkel Kruse Johnsen Date: Wed, 8 Jun 2016 14:39:17 +0200 Subject: [PATCH] Added StyleProviderPriority --- gtk/StyleProviderPriority.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 gtk/StyleProviderPriority.cs diff --git a/gtk/StyleProviderPriority.cs b/gtk/StyleProviderPriority.cs new file mode 100644 index 000000000..4ee37b384 --- /dev/null +++ b/gtk/StyleProviderPriority.cs @@ -0,0 +1,13 @@ +namespace Gtk { + + using System; + + public static class StyleProviderPriority + { + public const uint Fallback = 1; + public const uint Theme = 200; + public const uint Settings = 400; + public const uint Application = 600; + public const uint User = 800; + } +}