mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-02 19:20:40 +02:00
Qt,Qt5: do not send LM_MOVE from QLineEdit of QComboBox. Issue #0034880
git-svn-id: branches/fixes_2_0@60286 -
This commit is contained in:
parent
16e1738cde
commit
b74885843b
@ -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