awful.client: Fix c.requests_no_titlebar
The property was always false because of a typo. Signed-off-by: Sergey Vlasov <sigprof@gmail.com>
This commit is contained in:
parent
6cdd737c4a
commit
d266309ef8
|
@ -1144,7 +1144,7 @@ function client.object.get_requests_no_titlebar(c)
|
||||||
local hints = c.motif_wm_hints
|
local hints = c.motif_wm_hints
|
||||||
if not hints then return false end
|
if not hints then return false end
|
||||||
|
|
||||||
local decor = hints.deocrations
|
local decor = hints.decorations
|
||||||
if not decor then return false end
|
if not decor then return false end
|
||||||
|
|
||||||
local result = not decor.title
|
local result = not decor.title
|
||||||
|
|
Loading…
Reference in New Issue