diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-09-18 09:57:29 +0300 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-09-18 09:57:29 +0300 |
commit | 1b1e327cb73491c17972a33a07c3c9beafe7f938 (patch) | |
tree | 57fa4bc121fc2e172db42288fec7cdd7ff95399c /src/urlbar/urlbar.hpp | |
parent | Add Bookmarks toolbar (diff) | |
download | rekonq-1b1e327cb73491c17972a33a07c3c9beafe7f938.tar.xz |
Add Navigation and Tab toolbars
Diffstat (limited to 'src/urlbar/urlbar.hpp')
-rw-r--r-- | src/urlbar/urlbar.hpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/urlbar/urlbar.hpp b/src/urlbar/urlbar.hpp index 8be97838..3e3b9059 100644 --- a/src/urlbar/urlbar.hpp +++ b/src/urlbar/urlbar.hpp @@ -42,8 +42,11 @@ public slots: void setCurrentView(RekonqView *view) { m_currentView = view; - loadProgress(view->progress()); - setUrl(view->url()); + m_currentView_progress = view->progress(); + + emit view->urlChanged(view->url()); + // setUrl(view->url()); + repaint(); } void setUrl(const QUrl &url); |