1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Fix #25833: The correct way to disable top-most state is with HWND_NOTOPMOST, not HWND_TOP.

This commit is contained in:
Dan Mašek
2024-06-29 21:39:49 +02:00
parent be00247ca0
commit 1e5407a9ba
+1 -1
View File
@@ -681,7 +681,7 @@ void cvSetPropTopmost_W32(const char* name, const bool topmost)
static bool setPropTopmost_(CvWindow& window, bool topmost)
{
HWND flag = topmost ? HWND_TOPMOST : HWND_TOP;
HWND flag = topmost ? HWND_TOPMOST : HWND_NOTOPMOST;
BOOL success = SetWindowPos(window.frame, flag, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
if (!success)