This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
Cardinal
mirror of
https://github.com/DISTRHO/Cardinal.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
20
Wiki
Activity
Browse Source
Force-redraw of all child widgets on dark mode change
Signed-off-by: falkTX <falktx@falktx.com>
tags/24.04
falkTX
1 year ago
parent
3b2a78534f
commit
b44f993f91
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
1 changed files
with
1 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-3
src/override/MenuBar.cpp
+ 1
- 3
src/override/MenuBar.cpp
View File
@@ -605,10 +605,8 @@ static void setAllFramebufferWidgetsDirty(widget::Widget* const widget)
for (widget::Widget* child : widget->children)
{
if (widget::FramebufferWidget* const fbw = dynamic_cast<widget::FramebufferWidget*>(child))
{
fbw->setDirty();
break;
}
setAllFramebufferWidgetsDirty(child);
}
}
Write
Preview
Loading…
Cancel
Save