Patch from RDB: the xterm move-window sequences now don't screw up

when the window is e.g. maximised.

[originally from svn r1533]
This commit is contained in:
Simon Tatham 2002-01-08 09:56:06 +00:00
Родитель 9e6923016c
Коммит ba435fa6a0
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -4222,6 +4222,11 @@ void set_iconic(int iconic)
*/
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);
}