summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-23 20:45:42 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-23 20:45:42 +0200
commit02e5d5583255a29dfb6193f82fb683d443e66703 (patch)
tree5093b99f66ae32934e233dd985e2502ccdc0b9a3
parent8495abd140ec3d9f6d1d256ca00c4578e0045708 (diff)
downloadserenity-02e5d5583255a29dfb6193f82fb683d443e66703.zip
LibGUI: Don't bother setting a title on tooltip windows.
-rw-r--r--LibGUI/GApplication.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/LibGUI/GApplication.cpp b/LibGUI/GApplication.cpp
index 1a15476fd7..2fa219bb15 100644
--- a/LibGUI/GApplication.cpp
+++ b/LibGUI/GApplication.cpp
@@ -74,7 +74,6 @@ class GApplication::TooltipWindow final : public GWindow {
public:
TooltipWindow()
{
- set_title("Tooltip");
set_window_type(GWindowType::Tooltip);
m_label = new GLabel;
m_label->set_background_color(Color::from_rgb(0xdac7b5));