diff --git a/src/generic/listctrl.cpp b/src/generic/listctrl.cpp index 03e26f11e5..50052c8773 100644 --- a/src/generic/listctrl.cpp +++ b/src/generic/listctrl.cpp @@ -4820,6 +4820,10 @@ bool wxGenericListCtrl::DeleteColumn( int col ) // if we don't have the header any longer, we need to relayout the window // if ( !GetColumnCount() ) + + // Ensure that the non-existent columns are really removed from display. + Refresh(); + return true; }