mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-07 20:17:13 +01:00
Qt,Qt5: do not send LM_MOVE from QLineEdit of QComboBox. issue #34880
git-svn-id: trunk@60249 -
This commit is contained in:
parent
d7e48acfb9
commit
d66f084d39
@ -9782,6 +9782,9 @@ begin
|
||||
CachedSelectionLen := -1;
|
||||
end;
|
||||
|
||||
if (ChildOfComplexWidget = ccwComboBox) and (QEvent_type(Event) = QEventMove) then
|
||||
exit;
|
||||
|
||||
if (ChildOfComplexWidget = ccwComboBox) and
|
||||
((QEvent_type(Event) = QEventPaint) or (QEvent_type(Event) = QEventResize))
|
||||
and (LCLObject.HandleAllocated) then
|
||||
|
||||
@ -9705,6 +9705,9 @@ begin
|
||||
CachedSelectionLen := -1;
|
||||
end;
|
||||
|
||||
if (ChildOfComplexWidget = ccwComboBox) and (QEvent_type(Event) = QEventMove) then
|
||||
exit;
|
||||
|
||||
if (ChildOfComplexWidget = ccwComboBox) and
|
||||
((QEvent_type(Event) = QEventPaint) or (QEvent_type(Event) = QEventResize))
|
||||
and (LCLObject.HandleAllocated) then
|
||||
|
||||
Loading…
Reference in New Issue
Block a user