]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/listctrl.cpp
window flags extensions, streaming callback
[wxWidgets.git] / src / generic / listctrl.cpp
index 21f74335b6130438d8b9a643415cb746e772bef2..6674b681f658d6612c64bac74c5979bf9f4fae55 100644 (file)
@@ -3778,6 +3778,13 @@ void wxListMainWindow::GetItemRect( long index, wxRect &rect ) const
     wxCHECK_RET( index >= 0 && (size_t)index < GetItemCount(),
                  _T("invalid index in GetItemRect") );
 
+    // ensure that we're laid out, otherwise we could return nonsense
+    if ( m_dirty )
+    {
+        wxConstCast(this, wxListMainWindow)->
+            RecalculatePositions(TRUE /* no refresh */);
+    }
+
     rect = GetLineRect((size_t)index);
 
     CalcScrolledPosition(rect.x, rect.y, &rect.x, &rect.y);