diff --git a/src/generic/vlbox.cpp b/src/generic/vlbox.cpp index e277070b3d..0834212b7e 100644 --- a/src/generic/vlbox.cpp +++ b/src/generic/vlbox.cpp @@ -696,13 +696,7 @@ void wxVListBox::OnLeftDown(wxMouseEvent& event) if ( event.ShiftDown() ) flags |= ItemClick_Shift; - // under Mac Apple-click is used in the same way as Ctrl-click - // elsewhere -#ifdef __WXMAC__ - if ( event.MetaDown() ) -#else if ( event.ControlDown() ) -#endif flags |= ItemClick_Ctrl; DoHandleItemClick(item, flags);