Add missing spawn, position, force_screen and max_clients signals.

This commit is contained in:
Alfredo Palhares 2013-03-05 21:17:13 +00:00
parent b5a1221fb0
commit 136862c396
1 changed files with 15 additions and 1 deletions

View File

@ -11,7 +11,21 @@ local module = {}
-------------------------------INIT------------------------------ -------------------------------INIT------------------------------
for _,sig in ipairs({"property::exclusive","property::init","property::volatile","property::focus_on_new","property::instances","property::match","property::class"})do local signals = {
"property::exclusive",
"property::init",
"property::volatile",
"property::focus_on_new",
"property::instances",
"property::match",
"property::class",
"property::spawn",
"property::position",
"property::force_screen",
"property::max_clients",
}
for _,sig in ipairs(signals) do
capi.tag.add_signal(sig) capi.tag.add_signal(sig)
end end