mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-22 19:19:26 +02:00
Qt: added TODO for QEventFontChange. Related to issue #19695
git-svn-id: trunk@33300 -
This commit is contained in:
parent
c156e119ce
commit
ff5bcd9fee
@ -2178,6 +2178,10 @@ begin
|
|||||||
if LCLObject <> nil then
|
if LCLObject <> nil then
|
||||||
begin
|
begin
|
||||||
case QEvent_type(Event) of
|
case QEvent_type(Event) of
|
||||||
|
QEventFontChange:
|
||||||
|
begin
|
||||||
|
//TODO: for issue #19695
|
||||||
|
end;
|
||||||
QEventEnabledChange:
|
QEventEnabledChange:
|
||||||
begin
|
begin
|
||||||
// if we are disabled, imediatelly invalidate widgetAt cache
|
// if we are disabled, imediatelly invalidate widgetAt cache
|
||||||
@ -5887,7 +5891,11 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
case QEvent_type(Event) of
|
case QEvent_type(Event) of
|
||||||
QEventFontChange,
|
QEventFontChange:
|
||||||
|
begin
|
||||||
|
Result := inherited EventFilter(Sender, Event);
|
||||||
|
setLayoutThemeMargins(QWidget_layout(Widget), Widget);
|
||||||
|
end;
|
||||||
QEventStyleChange: setLayoutThemeMargins(QWidget_layout(Widget), Widget);
|
QEventStyleChange: setLayoutThemeMargins(QWidget_layout(Widget), Widget);
|
||||||
QEventShow:
|
QEventShow:
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user