summaryrefslogtreecommitdiff
path: root/src/core/core.c
diff options
context:
space:
mode:
authorVictor Kareh <[email protected]>2019-05-21 13:38:37 -0400
committerVictor Kareh <[email protected]>2019-06-05 10:49:37 -0400
commitb0a9363a46746a942841ce79766a0d0f96d51d45 (patch)
treec9fb8016c53f0af75631f0cc9a9e097da9fb54f4 /src/core/core.c
parentb57ab969c03612a0aaa1d9d8b6c0d67d13d9281f (diff)
downloadmarco-b0a9363a46746a942841ce79766a0d0f96d51d45.tar.bz2
marco-b0a9363a46746a942841ce79766a0d0f96d51d45.tar.xz
core: Allow retrieving the theme variant via core_get()
To associate frames with the correct style variant, the UI will need access to the window's theme variant property. https://bugzilla.gnome.org/show_bug.cgi?id=645355 upstream commit: https://gitlab.gnome.org/GNOME/metacity/commit/5c7403cc
Diffstat (limited to 'src/core/core.c')
-rw-r--r--src/core/core.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/core.c b/src/core/core.c
index 0e98959f..5363df9c 100644
--- a/src/core/core.c
+++ b/src/core/core.c
@@ -200,6 +200,9 @@ meta_core_get (Display *xdisplay,
case META_CORE_GET_FRAME_HEIGHT:
*((gint*)answer) = window->frame->rect.height;
break;
+ case META_CORE_GET_THEME_VARIANT:
+ *((char**)answer) = window->gtk_theme_variant;
+ break;
case META_CORE_GET_SCREEN_WIDTH:
*((gint*)answer) = window->screen->rect.width;
break;