mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-09 14:35:33 +00:00
Added StyleProviderPriority
This commit is contained in:
parent
7236eb3fa7
commit
b898323bba
13
gtk/StyleProviderPriority.cs
Normal file
13
gtk/StyleProviderPriority.cs
Normal file
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue