summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberts Muktupāvels <alberts.muktupavels@gmail.com>2017-02-27 15:31:24 +0200
committerAlberts Muktupāvels <alberts.muktupavels@gmail.com>2017-03-24 12:57:08 +0200
commite48300828b9cb796f1424f0d8b8ec20dd716eaed (patch)
tree3436969059f3212586fe5ab675027a650c5006f2
parenta5f08ac9cdf97f6c2b0ae5dbb4b8c842713ef2d2 (diff)
downloadmetacity-e48300828b9cb796f1424f0d8b8ec20dd716eaed.tar.gz
move META_PRIORITY_RESIZE to common.h
-rw-r--r--src/include/common.h3
-rw-r--r--src/include/ui.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/src/include/common.h b/src/include/common.h
index 7f9e3e77..ad03176a 100644
--- a/src/include/common.h
+++ b/src/include/common.h
@@ -202,6 +202,9 @@ typedef enum
#define META_DEFAULT_ICON_NAME "window"
+/* This is between GTK_PRIORITY_RESIZE (+10) and GDK_PRIORITY_REDRAW (+20) */
+#define META_PRIORITY_RESIZE (G_PRIORITY_HIGH_IDLE + 15)
+
#define META_PRIORITY_PREFS_NOTIFY (G_PRIORITY_DEFAULT_IDLE + 10)
#define META_PRIORITY_WORK_AREA_HINT (G_PRIORITY_DEFAULT_IDLE + 15)
diff --git a/src/include/ui.h b/src/include/ui.h
index 3dd823da..1045230d 100644
--- a/src/include/ui.h
+++ b/src/include/ui.h
@@ -32,9 +32,6 @@
#include <libmetacity/meta-frame-borders.h>
#include <libmetacity/meta-frame-enums.h>
-/* This is between GTK_PRIORITY_RESIZE (+10) and GDK_PRIORITY_REDRAW (+20) */
-#define META_PRIORITY_RESIZE (G_PRIORITY_HIGH_IDLE + 15)
-
typedef struct _MetaUI MetaUI;
typedef gboolean (* MetaEventFunc) (XEvent *xevent, gpointer data);