diff options
author | George Hazan <george.hazan@gmail.com> | 2025-05-09 17:40:10 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-05-09 17:40:10 +0300 |
commit | 688953e95536edd77988ab2f46027697b9b3f2e6 (patch) | |
tree | 46bcab44a66f4eb989f35829d67eb3b8dcaff93d /plugins/TrafficCounter/src | |
parent | 8553c260ff9939c9d78bbaf2634bb26a20342a3a (diff) |
more fixes
Diffstat (limited to 'plugins/TrafficCounter/src')
-rw-r--r-- | plugins/TrafficCounter/src/TrafficCounter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TrafficCounter/src/TrafficCounter.cpp b/plugins/TrafficCounter/src/TrafficCounter.cpp index c4931fb019..a117eaabde 100644 --- a/plugins/TrafficCounter/src/TrafficCounter.cpp +++ b/plugins/TrafficCounter/src/TrafficCounter.cpp @@ -626,7 +626,7 @@ LRESULT CALLBACK TrafficCounterWndProc_MW(HWND hwnd, UINT msg, WPARAM wParam, LP return 1;
case WM_LBUTTONDOWN:
- if (db_get_b(0, "CLUI", "ClientAreaDrag", SETTING_CLIENTDRAG_DEFAULT)) {
+ if (Clist::bClientAreaDrag) {
POINT p;
ClientToScreen(GetParent(hwnd), &p);
return SendMessage(GetParent(hwnd), WM_SYSCOMMAND, SC_MOVE | HTCAPTION, MAKELPARAM(p.x, p.y));
|