Skip to content

Commit

Permalink
LibGUI: Make the default window title "GUI::Window"
Browse files Browse the repository at this point in the history
Instead of "GWindow", that is. :^)
  • Loading branch information
awesomekling committed Mar 5, 2020
1 parent 41c4e66 commit a119d81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/LibGUI/Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Window::Window(Core::Object* parent)
{
all_windows->set(this);
m_rect_when_windowless = { 100, 400, 140, 140 };
m_title_when_windowless = "GWindow";
m_title_when_windowless = "GUI::Window";
}

Window::~Window()
Expand Down

0 comments on commit a119d81

Please sign in to comment.