Удивительное автоскрытие панели wm не будет работать

Я не хочу, чтобы панель автоматически скрывалась слева:

s.lbox = awful.wibar({ position = "left", screen = s, width = 2, type = "desktop", visible = true })
s.lbox:setup {
        layout = wibox.layout.fixed.vertical,

        {
            layout = wibox.layout.fixed.vertical,
            launcher01,
            launcher02,
            launcher03,
            launcher04,
            launcher05,
            launcher06,
            launcher07,
            launcher08,
            launcher09,
            launcher10,
        }
    }

   s.lbox:connect_signal("mouse::enter", function(w) 
        w:geometry({ width = 32 })
    end)

Панель видна, но не работает автоматическое скрытие при вводе мыши.


person cottonjoe    schedule 05.04.2017    source источник


Ответы (1)


Я добавил параметр height в определение и теперь работает:

s.lbox = awful.wibar({ position = "left", screen = s, width = 2, height = 760, type = "desktop", visible = true })
person cottonjoe    schedule 07.04.2017