Skip to content

Commit

Permalink
Clock.MenuApplet: Add window title.
Browse files Browse the repository at this point in the history
  • Loading branch information
asliturk authored and awesomekling committed Feb 10, 2020
1 parent fcee507 commit afb37b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MenuApplets/Clock/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
*/

#include <LibCore/Timer.h>
#include <LibGfx/Palette.h>
#include <LibGUI/Application.h>
#include <LibGUI/Painter.h>
#include <LibGUI/Widget.h>
#include <LibGUI/Window.h>
#include <LibGfx/Palette.h>
#include <stdio.h>
#include <time.h>

Expand Down Expand Up @@ -103,6 +103,7 @@ int main(int argc, char** argv)
}

auto window = GUI::Window::construct();
window->set_title("Clock");
window->set_window_type(GUI::WindowType::MenuApplet);

auto widget = ClockWidget::construct();
Expand Down

0 comments on commit afb37b6

Please sign in to comment.