mirror of
https://github.com/labwc/labwc.git
synced 2026-03-07 04:33:54 -05:00
parent
897799da5a
commit
e47f9204b9
1 changed files with 2 additions and 1 deletions
|
|
@ -1084,7 +1084,8 @@ actions_run(struct view *activator, struct server *server,
|
||||||
if (view) {
|
if (view) {
|
||||||
int x = action_get_int(action, "x", 0);
|
int x = action_get_int(action, "x", 0);
|
||||||
int y = action_get_int(action, "y", 0);
|
int y = action_get_int(action, "y", 0);
|
||||||
view_move(view, x, y);
|
struct border margin = ssd_thickness(view);
|
||||||
|
view_move(view, x + margin.left, y + margin.top);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case ACTION_TYPE_RESIZETO:
|
case ACTION_TYPE_RESIZETO:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue