fixed bug in mouse handling

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8336 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-09-12 08:29:02 +00:00
parent cc47eed9ca
commit 80d2803f70

View File

@@ -2414,16 +2414,19 @@ void wxGenericTreeCtrl::OnMouse( wxMouseEvent &event )
nevent.SetEventObject(this); nevent.SetEventObject(this);
GetEventHandler()->ProcessEvent(nevent); GetEventHandler()->ProcessEvent(nevent);
} }
else if ( event.LeftUp() && m_lastOnSame ) else if ( event.LeftUp() )
{ {
if ( (item == m_current) && if ( m_lastOnSame )
(flags & wxTREE_HITTEST_ONITEMLABEL) &&
HasFlag(wxTR_EDIT_LABELS) )
{ {
m_renameTimer->Start( 100, TRUE ); if ( (item == m_current) &&
} (flags & wxTREE_HITTEST_ONITEMLABEL) &&
HasFlag(wxTR_EDIT_LABELS) )
{
m_renameTimer->Start( 100, TRUE );
}
m_lastOnSame = FALSE; m_lastOnSame = FALSE;
}
} }
else else
{ {