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
Notes: sideshowbarker 2024-07-18 20:49:00 +09:00
13 changed files with 17 additions and 17 deletions

View file

@ -253,7 +253,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(GraphWidget::history_size + 2, 15);
window->set_main_widget<GraphWidget>(graph_type, graph_color, graph_error_color);