Fix issue with `add_tag` when not using floating layout

Using `awful.layout.layouts[0]` was causing `add_tag` to always be set to floating rather than the first entry in `awful.layout.layouts`. This would be fine for users who were using the floating layout, but would otherwise break the layoutbox widget and changing layouts.
This commit is contained in:
2009 2017-06-21 11:02:41 +10:00 committed by GitHub
parent 29dd7ad6fc
commit 8a433a285b
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ function util.add_tag(layout)
textbox = awful.screen.focused().mypromptbox.widget,
exe_callback = function(name)
if not name or #name == 0 then return end
awful.tag.add(name, { screen = awful.screen.focused(), layout = layout or awful.layout.layouts[0] }):view_only()
awful.tag.add(name, { screen = awful.screen.focused(), layout = layout or awful.layout.layouts[1] }):view_only()
end
}
end