Commit some forgotten fixes

This commit is contained in:
Emmanuel Lepage Vallee 2014-11-04 23:56:30 -05:00
parent 79db88b26f
commit fa3c18b4b2
3 changed files with 7 additions and 4 deletions

View File

@ -115,7 +115,7 @@ end
function module.tag(direction,swap,max)
current_mode = "tag"
local c = capi.client.focus
module._max.display_tags((c) and c.screen or capi.mouse.screen,direction,c,true,max)
module._max.display_tags((c) and c.screen or capi.mouse.screen,direction,c,swap,max)
start_loop(swap,max)
end

View File

@ -128,6 +128,9 @@ function module.display(_,dir)
init_wiboxes(dir)
end
module.reload(nil,direction)
local ss,opss = capi.client.focus and capi.client.focus.screen or capi.mouse.screen,pss
next_screen(ss,dir)
module.reload(nil,direction)
end
function module.hide()

View File

@ -1,6 +1,6 @@
local math = math
local color = require( "gears.color" )
local beautiful = require( "beautiful" )
local math = math
local color = require( "gears.color" )
local beautiful = require( "beautiful" )
local module = {settings={}}