Merge pull request #890 from psychon/fix-merge-mistake

Fix screen.fake_add()
This commit is contained in:
Emmanuel Lepage Vallée 2016-05-10 14:54:22 -04:00
commit c1d9e58f94
1 changed files with 2 additions and 2 deletions

View File

@ -1042,9 +1042,9 @@ luaA_screen_fake_add(lua_State *L)
s->geometry.y = y;
s->geometry.width = width;
s->geometry.height = height;
s->valid = true;
screen_added(L, s);
luaA_object_push(L, s);
luaA_object_emit_signal(L, -1, "added", 0);
return 1;
}