Qt5,Qt6: fixed invalid behaviour of columns. issue #41125

(cherry picked from commit de24da1877)

Co-authored-by: Željan Rikalo <zeljko@lazarus-ide.org>
This commit is contained in:
Željan Rikalo 2024-09-07 19:34:33 +00:00 committed by Željan Rikalo
parent c8c5d06ff9
commit 2f84b5c689
2 changed files with 8 additions and 2 deletions

View File

@ -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);

View File

@ -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);