summaryrefslogtreecommitdiff
path: root/src/modules/button
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/button')
-rw-r--r--src/modules/button/button.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/button/button.cpp b/src/modules/button/button.cpp
index b65796f13e..66aafc243c 100644
--- a/src/modules/button/button.cpp
+++ b/src/modules/button/button.cpp
@@ -601,7 +601,7 @@ static LRESULT CALLBACK MButtonWndProc(HWND hwndDlg, UINT msg, WPARAM wParam, L
POINT pt;
GetWindowRect(hwndDlg,&rc);
GetCursorPos(&pt);
- if(!PtInRect(&rc,pt)) { // mouse must be gone, trigger mouse leave
+ if (!PtInRect(&rc,pt)) { // mouse must be gone, trigger mouse leave
PostMessage(hwndDlg,WM_MOUSELEAVE,0,0L);
KillTimer(hwndDlg,BUTTON_POLLID);
} }