2017-04-05 10 views
0

を動作しません私は左側のパネル自動非表示をするためにwan't:素晴らしい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) 

パネルが表示されますが、私は、マウスを入力すると、自動非表示に動作しません。

答えて

0

私は定義にheightパラメータを追加して機能するようになりましたしました:

s.lbox = awful.wibar({ position = "left", screen = s, width = 2, height = 760, type = "desktop", visible = true }) 
関連する問題