Remove typo in variable name
Build and Test / build-linux (push) Has been cancelled
Build and Test / build-wayland (push) Has been cancelled
Build and Test / build-macos (push) Has been cancelled
Build and Test / build-windows (push) Has been cancelled

This commit is contained in:
ManoloFLTK
2025-12-16 12:04:45 +01:00
parent e33130d204
commit 63c0ef5681
+1 -1
View File
@@ -2196,7 +2196,7 @@ void Fl_WinAPI_Window_Driver::makeWindow() {
nscreen = Fl::screen_driver()->get_mouse(mx, my);
Fl::screen_xywh(X, Y, W, H, nscreen);
if (mx + w->w() >= X + W) mx = X + W - w->w();
if (my + w->h() >= H + H) my = Y + H - w->h();
if (my + w->h() >= Y + H) my = Y + H - w->h();
w->position(mx, my);
}
}