diff --git a/lcl/interfaces/qt5/qtwscomctrls.pp b/lcl/interfaces/qt5/qtwscomctrls.pp index 0bddf10bd7..94848e1035 100644 --- a/lcl/interfaces/qt5/qtwscomctrls.pp +++ b/lcl/interfaces/qt5/qtwscomctrls.pp @@ -842,7 +842,10 @@ begin Exit(-1); // TODO: columns in vsIcon mode - if IsIconView(ALV) or (csDestroyingHandle in ALV.ControlState) then + if IsIconView(ALV) then + exit(0); + + if (TQtWidget(ALV.Handle) is TQtListWidget) then exit(0); QtTreeWidget := TQtTreeWidget(ALV.Handle); diff --git a/lcl/interfaces/qt6/qtwscomctrls.pp b/lcl/interfaces/qt6/qtwscomctrls.pp index fb9975ac54..9ba79da3ee 100644 --- a/lcl/interfaces/qt6/qtwscomctrls.pp +++ b/lcl/interfaces/qt6/qtwscomctrls.pp @@ -840,7 +840,10 @@ begin Exit(-1); // TODO: columns in vsIcon mode - if IsIconView(ALV) or (csDestroyingHandle in ALV.ControlState) then + if IsIconView(ALV) then + exit(0); + + if (TQtWidget(ALV.Handle) is TQtListWidget) then exit(0); QtTreeWidget := TQtTreeWidget(ALV.Handle);