X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=window.c;h=1b7f60891e8bc21aa62dc1db8ec8a309fb0a247a;hb=46803abdbe7a1dc1e4de5084c334ce4d7e05a790;hp=59901010e07eb2210b6523b4ae3fad8e988be83a;hpb=02a926f6c125c580f77d1520f2d050ee2d3a9a25;p=PuTTY.git diff --git a/window.c b/window.c index 59901010..1b7f6089 100644 --- a/window.c +++ b/window.c @@ -11,10 +11,12 @@ #endif #endif +#ifndef NO_MULTIMON #if WINVER < 0x0500 #define COMPILE_MULTIMON_STUBS #include #endif +#endif #include #include @@ -4220,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); }