From ac099343dab7b5048ce242958c454c55d1924902 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 19 Aug 2014 13:58:45 -0400 Subject: [PATCH] window: Increase the height of CSD titlebars This seems to be more accurate with what we currently see in GNOME. Without having the app expose this information to us, it might be a better idea to use the default frame style for this information instead. --- src/core/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/window.c b/src/core/window.c index 62dcc30f3..3ab453e7e 100644 --- a/src/core/window.c +++ b/src/core/window.c @@ -4165,7 +4165,7 @@ meta_window_get_titlebar_rect (MetaWindow *window, { /* Pick an arbitrary height for a titlebar. We might want to * eventually have CSD windows expose their borders to us. */ - rect->height = 15; + rect->height = 50; } }