wxWindow no longer emits any scroll events after
a programmatic change to its scrollbars. Reverted sense of SHIFT and CONTROL in wxListCtrl. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5850 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1467,13 +1467,13 @@ void wxListMainWindow::OnMouse( wxMouseEvent &event )
|
||||
}
|
||||
else
|
||||
{
|
||||
if (event.ShiftDown())
|
||||
if (event.ControlDown())
|
||||
{
|
||||
m_current = line;
|
||||
m_current->ReverseHilight();
|
||||
RefreshLine( m_current );
|
||||
}
|
||||
else if (event.ControlDown())
|
||||
else if (event.ShiftDown())
|
||||
{
|
||||
m_current = line;
|
||||
|
||||
|
Reference in New Issue
Block a user