mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Fixed the compatibility issue for the skins that are using MouseOverAction/MouseLeaveAction in Meters.
This commit is contained in:
@ -40,6 +40,9 @@ public:
|
||||
bool MouseUp(POINT pos, CMeterWindow* window);
|
||||
bool MouseDown(POINT pos);
|
||||
|
||||
void SetExecutable(bool exec) { m_Executable = exec; }
|
||||
bool IsExecutable() { return m_Executable; }
|
||||
|
||||
private:
|
||||
bool HitTest2(int px, int py, bool checkAlpha);
|
||||
|
||||
@ -49,6 +52,7 @@ private:
|
||||
std::wstring m_Command; // Command to be executed
|
||||
int m_State;
|
||||
bool m_Clicked;
|
||||
bool m_Executable;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user