Differences From Artifact [1479cffdda]:
- File window.c — part of check-in [2150c4cd76] at 2002-01-08 03:44:23 on branch trunk — Patch from RDB: make /DNO_MULTIMON (mentioned as a possible compile-time definition in the Makefile) actually work. D'oh. (user: simon size: 112408)
To Artifact [0fc777979a]:
- File window.c — part of check-in [90f72640be] at 2002-01-08 03:56:06 on branch trunk — Patch from RDB: the xterm move-window sequences now don't screw up when the window is e.g. maximised. (user: simon size: 112534)
| ︙ | |||
4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 | 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 | + + + + + |
}
/*
* Move the window in response to a server-side request.
*/
void move_window(int x, int y)
{
if (cfg.resize_action == RESIZE_DISABLED ||
cfg.resize_action == RESIZE_FONT ||
IsZoomed(hwnd))
return;
SetWindowPos(hwnd, NULL, x, y, 0, 0, SWP_NOSIZE | SWP_NOZORDER);
}
/*
* Move the window to the top or bottom of the z-order in response
* to a server-side request.
*/
|
| ︙ |