awful.menu: update t new layout api
Apparently the style to get the direction of a wibox.layout.* changed from calling get_dir to just accessing the attribute dir.
This commit is contained in:
parent
2f24ec69e1
commit
40b4387e6d
|
@ -102,7 +102,7 @@ end
|
||||||
|
|
||||||
local function item_position(_menu, child)
|
local function item_position(_menu, child)
|
||||||
local in_dir, other, a, b = 0, 0, "height", "width"
|
local in_dir, other, a, b = 0, 0, "height", "width"
|
||||||
local dir = _menu.layout.get_dir and _menu.layout:get_dir() or "y"
|
local dir = _menu.layout.dir or "y"
|
||||||
if dir == "x" then a, b = b, a end
|
if dir == "x" then a, b = b, a end
|
||||||
|
|
||||||
local in_dir, other = 0, _menu[b]
|
local in_dir, other = 0, _menu[b]
|
||||||
|
@ -163,7 +163,7 @@ end
|
||||||
|
|
||||||
local function set_size(_menu)
|
local function set_size(_menu)
|
||||||
local in_dir, other, a, b = 0, 0, "height", "width"
|
local in_dir, other, a, b = 0, 0, "height", "width"
|
||||||
local dir = _menu.layout.get_dir and _menu.layout:get_dir() or "y"
|
local dir = _menu.layout.dir or "y"
|
||||||
if dir == "x" then a, b = b, a end
|
if dir == "x" then a, b = b, a end
|
||||||
for _, item in ipairs(_menu.items) do
|
for _, item in ipairs(_menu.items) do
|
||||||
other = math.max(other, item[b])
|
other = math.max(other, item[b])
|
||||||
|
|
Loading…
Reference in New Issue