Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion fvwm/move_resize.c
Original file line number Diff line number Diff line change
Expand Up @@ -2246,7 +2246,11 @@ static void _move_window(F_CMD_ARGS, Bool do_animate, int mode)
final.x = r.x;
final.y = r.y;

fw->Desk = m->virtual_scr.CurrentDesk;
if (fw->Desk != m->virtual_scr.CurrentDesk)
{
fw->UpdateDesk = m->virtual_scr.CurrentDesk;
}

Comment on lines -2249 to +2253
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No -- I'm not sure this is correct; the current desk gets updated when fvwm_update_screen() is called.

fw->m = m;
}
else
Expand Down
Loading