From: Stefan Csomor Date: Sat, 9 Jul 2011 06:37:14 +0000 (+0000) Subject: avoid scrolling to cleared-non existing- data, reload before, fixes #13318 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/930d20e710c36fead7f8251e068d72769cfb74f8?ds=inline avoid scrolling to cleared-non existing- data, reload before, fixes #13318 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68194 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/cocoa/dataview.mm b/src/osx/cocoa/dataview.mm index f50842e4a5..148c9b0113 100644 --- a/src/osx/cocoa/dataview.mm +++ b/src/osx/cocoa/dataview.mm @@ -2184,9 +2184,9 @@ bool wxCocoaDataViewControl::IsExpanded(const wxDataViewItem& item) const bool wxCocoaDataViewControl::Reload() { [m_DataSource clearBuffers]; + [m_OutlineView reloadData]; [m_OutlineView scrollColumnToVisible:0]; [m_OutlineView scrollRowToVisible:0]; - [m_OutlineView reloadData]; return true; }