mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 21:38:27 +02:00
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:
parent
c8c5d06ff9
commit
2f84b5c689
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user