1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:07:43 +00:00

WindowServer+LibGUI: Rename WindowType::MenuApplet => Applet

This commit is contained in:
Andreas Kling 2021-04-04 17:55:50 +02:00
parent dabfeb6dd8
commit 0069020e6c
13 changed files with 17 additions and 17 deletions

View file

@ -529,7 +529,7 @@ void Window::invalidate(bool invalidate_frame, bool re_render_frame)
void Window::invalidate(const Gfx::IntRect& rect, bool with_frame)
{
if (type() == WindowType::MenuApplet) {
if (type() == WindowType::Applet) {
AppletManager::the().invalidate_applet(*this, rect);
return;
}