From d266309ef8b466c3b1c4b26f66d4093dfd8f1f56 Mon Sep 17 00:00:00 2001 From: Sergey Vlasov Date: Mon, 12 Nov 2018 11:26:16 +0300 Subject: [PATCH] awful.client: Fix c.requests_no_titlebar The property was always false because of a typo. Signed-off-by: Sergey Vlasov --- lib/awful/client.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/awful/client.lua b/lib/awful/client.lua index f75270cfa..28d66a927 100644 --- a/lib/awful/client.lua +++ b/lib/awful/client.lua @@ -1144,7 +1144,7 @@ function client.object.get_requests_no_titlebar(c) local hints = c.motif_wm_hints if not hints then return false end - local decor = hints.deocrations + local decor = hints.decorations if not decor then return false end local result = not decor.title