Merge pull request #1632 from Veratil/fix-tag-setmwfact

Fix typo in awful.tag.setmwfact

Fix #1627
This commit is contained in:
Emmanuel Lepage Vallée 2017-03-05 20:22:00 -05:00 committed by GitHub
commit 399bd8543a
1 changed files with 1 additions and 1 deletions

View File

@ -610,7 +610,7 @@ end
function tag.setmwfact(mwfact, t)
util.deprecate("Use t.master_width_factor = mwfact instead of awful.tag.setmwfact")
tag.object.get_master_width_factor(t or ascreen.focused().selected_tag, mwfact)
tag.object.set_master_width_factor(t or ascreen.focused().selected_tag, mwfact)
end
--- Increase master width factor.