mirror of
https://github.com/labwc/labwc.git
synced 2026-02-16 22:05:27 -05:00
Add view_move()
This commit is contained in:
parent
c646343c1d
commit
cb44f047f3
6 changed files with 31 additions and 9 deletions
|
|
@ -6,6 +6,12 @@ view_move_resize(struct view *view, struct wlr_box geo)
|
|||
view->impl->configure(view, geo);
|
||||
}
|
||||
|
||||
void
|
||||
view_move(struct view *view, double x, double y)
|
||||
{
|
||||
view->impl->move(view, x, y);
|
||||
}
|
||||
|
||||
void
|
||||
view_minimize(struct view *view)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue