Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksoid <aleksoid@users.sourceforge.net>2010-07-26 06:25:18 +0400
committerAleksoid <aleksoid@users.sourceforge.net>2010-07-26 06:25:18 +0400
commitbf3530abdfaae7e9c0a902bb7f4630ef5b5550ff (patch)
treec4b3e93bf0db634d34c0d8ea75fa1e9ded1fb267 /src/apps/mplayerc/MainFrm.h
parentc86d0297e13c83319a90da188c017fdd4028ae06 (diff)
Fix : prevent Single Mouse Click on Double Mouse Click;
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@2153 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/apps/mplayerc/MainFrm.h')
-rw-r--r--src/apps/mplayerc/MainFrm.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/apps/mplayerc/MainFrm.h b/src/apps/mplayerc/MainFrm.h
index 1bd76a739..f02b3860e 100644
--- a/src/apps/mplayerc/MainFrm.h
+++ b/src/apps/mplayerc/MainFrm.h
@@ -180,7 +180,8 @@ class CMainFrame : public CFrameWnd, public CDropTarget
TIMER_FULLSCREENMOUSEHIDER,
TIMER_STATS,
TIMER_LEFTCLICK,
- TIMER_STATUSERASER
+ TIMER_STATUSERASER,
+ TIMER_DBLLCLICK
};
friend class CPPageFileInfoSheet;
@@ -923,4 +924,7 @@ protected:
virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
public:
afx_msg UINT OnPowerBroadcast(UINT nPowerEvent, UINT nEventData);
+
+ UINT LButtonDown_nFlags;
+ CPoint LButtonDown_point;
};