From 96141e28f9c5721e30c89eec34650c9f676fb608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Wed, 28 Mar 2018 23:46:54 -0500 Subject: [PATCH] theme: add ".appmenu" class to the appmenu button So it does gtk headerbar, so mutter should do. --- src/ui/theme.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ui/theme.c b/src/ui/theme.c index 2b3cd5eaf..8786b17f3 100644 --- a/src/ui/theme.c +++ b/src/ui/theme.c @@ -712,6 +712,8 @@ get_class_from_button_type (MetaButtonType type) return "maximize"; case META_BUTTON_TYPE_MINIMIZE: return "minimize"; + case META_BUTTON_TYPE_APPMENU: + return "appmenu"; default: return NULL; }