Skip to content

Commit 9226db0

Browse files
committed
Fixed bug where mouse release callback was not called
1 parent ccb91da commit 9226db0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
// New versions - things to change
2323

24-
#define THISVERSION 474 // Step 1.
25-
const CString MUSHCLIENT_VERSION = "4.74"; // Step 2.
24+
#define THISVERSION 475 // Step 1.
25+
const CString MUSHCLIENT_VERSION = "4.75"; // Step 2.
2626
// Step 3. Don't forget VERSION resource in Resources tab
2727
// Step 4. Remember: README.TXT
2828

mushview.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6867,7 +6867,7 @@ bool CMUSHView::Mouse_Up_MiniWindow (CMUSHclientDoc* pDoc, CPoint point, long fl
68676867
prev_mw->m_client_mouseposition = point;
68686868

68696869
// see if activity was mouse-down
6870-
if (!prev_mw->m_sMouseDownHotspot.empty ()) // mouse was clicked
6870+
if (!sOldMouseDownHotspot.empty ()) // mouse was clicked
68716871
{
68726872
// lookup that HotspotId
68736873
HotspotMapIterator it = prev_mw->m_Hotspots.find (sOldMouseDownHotspot);

0 commit comments

Comments
 (0)