From 7665ed207b67eeebde62d243c96f12054e884a4d Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Mon, 28 May 2018 12:32:34 +0200 Subject: Show view profile instead of window profile in title --- src/webengine/webview.cpp | 8 ++++++++ src/webengine/webview.h | 1 + 2 files changed, 9 insertions(+) (limited to 'src/webengine') diff --git a/src/webengine/webview.cpp b/src/webengine/webview.cpp index 686a689..d5f88d0 100644 --- a/src/webengine/webview.cpp +++ b/src/webengine/webview.cpp @@ -50,6 +50,14 @@ WebView::~WebView() delete m_pageMenu; } +void WebView::setProfile(WebProfile *profile) +{ + m_profile = profile; + const auto url = this->url(); + setPage(new WebPage(profile, this)); + this->load(url); +} + bool WebView::isLoaded() const { return m_loaded; diff --git a/src/webengine/webview.h b/src/webengine/webview.h index 78ea80d..378296e 100644 --- a/src/webengine/webview.h +++ b/src/webengine/webview.h @@ -41,6 +41,7 @@ public: WebProfile *profile() { return m_profile; } + void setProfile(WebProfile *profile); bool isLoaded() const; -- cgit v1.2.1