summaryrefslogtreecommitdiff
path: root/src/urlpanel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/urlpanel.cpp')
-rw-r--r--src/urlpanel.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/urlpanel.cpp b/src/urlpanel.cpp
index d7ddd896..e92b701a 100644
--- a/src/urlpanel.cpp
+++ b/src/urlpanel.cpp
@@ -99,8 +99,14 @@ void UrlPanel::setup()
_treeView->setModel(proxy);
connect(search, SIGNAL(textChanged(QString)), proxy, SLOT(setFilterFixedString(QString)));
+ connect(search, SIGNAL(textChanged(QString)), this, SLOT(expandTreeView()));
connect(_treeView, SIGNAL(contextMenuItemRequested(const QPoint &)), this, SLOT(contextMenuItem(const QPoint &)));
connect(_treeView, SIGNAL(contextMenuGroupRequested(const QPoint &)), this, SLOT(contextMenuGroup(const QPoint &)));
connect(_treeView, SIGNAL(contextMenuEmptyRequested(const QPoint &)), this, SLOT(contextMenuEmpty(const QPoint &)));
}
+
+void UrlPanel::expandTreeView()
+{
+ _treeView->expandAll();
+}