From db7213c07f19c3d36d13722568e6ced53db286b2 Mon Sep 17 00:00:00 2001 From: Tim Kosse Date: Sat, 2 Oct 2010 08:53:36 +0000 Subject: [PATCH] Apply #12469: Do not start rename timer if the generic implementation is used which has its own rename timer already. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@65722 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/listctrl_mac.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mac/carbon/listctrl_mac.cpp b/src/mac/carbon/listctrl_mac.cpp index a3e33b35d9..a9b0cf23b9 100644 --- a/src/mac/carbon/listctrl_mac.cpp +++ b/src/mac/carbon/listctrl_mac.cpp @@ -622,7 +622,8 @@ void wxListCtrl::OnLeftDown(wxMouseEvent& event) (hitResult & wxLIST_HITTEST_ONITEMLABEL) && HasFlag(wxLC_EDIT_LABELS) ) { - m_renameTimer->Start( 100, true ); + if (!m_genericImpl) + m_renameTimer->Start( 100, true ); } else {