Change wlr_output_layout_move to wlr_output_layout_add
Upstream is removing wlr_output_layout_move, this is now required to
build with wlroots master.
See: 097ea84cda
This commit is contained in:
parent
17814972ab
commit
4c54219887
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ l_kiwmi_output_move(lua_State *L)
|
|||
int lx = lua_tonumber(L, 2);
|
||||
int ly = lua_tonumber(L, 3);
|
||||
|
||||
wlr_output_layout_move(output_layout, output->wlr_output, lx, ly);
|
||||
wlr_output_layout_add(output_layout, output->wlr_output, lx, ly);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue