summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-09-09 15:19:18 +0200
committerAndrew Kaster <andrewdkaster@gmail.com>2022-12-25 07:58:58 -0700
commit0c4ae810d70768914252668e781213d7341342e7 (patch)
tree116244f45fccb0773f63a9f2609ed08bb2960d08
parent4e3e5149d52569a75f837016ec80d66463f0b84b (diff)
downloadserenity-0c4ae810d70768914252668e781213d7341342e7.zip
Ladybird: Hide the hovered URL label on startup
-rw-r--r--Ladybird/Tab.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Ladybird/Tab.cpp b/Ladybird/Tab.cpp
index bc8302ec69..2654662634 100644
--- a/Ladybird/Tab.cpp
+++ b/Ladybird/Tab.cpp
@@ -30,6 +30,7 @@ Tab::Tab(QMainWindow* window)
m_location_edit = new QLineEdit;
m_hover_label = new QLabel(this);
+ m_hover_label->hide();
m_hover_label->setFrameShape(QFrame::Shape::Box);
m_hover_label->setAutoFillBackground(true);