mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 20:18:34 +02:00
Qt,Qt5: fixed font changing of TComboBox editor. issue #39539
This commit is contained in:
parent
1e405b000c
commit
53cda894a2
@ -9489,6 +9489,9 @@ begin
|
||||
if (ChildOfComplexWidget = ccwComboBox) and (QEvent_type(Event) = QEventMove) then
|
||||
exit;
|
||||
|
||||
if (ChildOfComplexWidget = ccwComboBox) and (QEvent_type(Event) = QEventFontChange) then
|
||||
exit;
|
||||
|
||||
if (ChildOfComplexWidget = ccwComboBox) and
|
||||
((QEvent_type(Event) = QEventPaint) or (QEvent_type(Event) = QEventResize))
|
||||
and (LCLObject.HandleAllocated) then
|
||||
|
@ -9565,6 +9565,9 @@ begin
|
||||
if (ChildOfComplexWidget = ccwComboBox) and (QEvent_type(Event) = QEventMove) then
|
||||
exit;
|
||||
|
||||
if (ChildOfComplexWidget = ccwComboBox) and (QEvent_type(Event) = QEventFontChange) 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