summaryrefslogtreecommitdiff
path: root/Userland/Applets/Network
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-04-04 17:55:50 +0200
committerAndreas Kling <kling@serenityos.org>2021-04-04 17:55:50 +0200
commit0069020e6c40be02416f9ee4333fc752172113ea (patch)
tree95a4bf03a6630439a5043b483c3c31209e8aafc0 /Userland/Applets/Network
parentdabfeb6dd80ec0cb053b9c087fe249c88b1a48c6 (diff)
downloadserenity-0069020e6c40be02416f9ee4333fc752172113ea.zip
WindowServer+LibGUI: Rename WindowType::MenuApplet => Applet
Diffstat (limited to 'Userland/Applets/Network')
-rw-r--r--Userland/Applets/Network/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applets/Network/main.cpp b/Userland/Applets/Network/main.cpp
index f250b3170e..0d6815ea61 100644
--- a/Userland/Applets/Network/main.cpp
+++ b/Userland/Applets/Network/main.cpp
@@ -218,7 +218,7 @@ int main(int argc, char* argv[])
auto window = GUI::Window::construct();
window->set_title(name);
- window->set_window_type(GUI::WindowType::MenuApplet);
+ window->set_window_type(GUI::WindowType::Applet);
window->resize(16, 16);
auto& icon = window->set_main_widget<NetworkWidget>(display_notifications);
icon.set_fill_with_background_color(true);