aboutsummaryrefslogtreecommitdiff
path: root/src/browsertab.cpp
diff options
context:
space:
mode:
authorFelix (xq) Queißner <git@mq32.de>2020-06-08 20:27:06 +0200
committerFelix (xq) Queißner <git@mq32.de>2020-06-08 20:27:06 +0200
commite6e28fd4814e1f513773288710e1bcb3cfad0028 (patch)
tree4c5274fb3dc5f14a3332de456a5d5213c8e7cdaf /src/browsertab.cpp
parent51f46dce66ac660507dc7abad5506650bc863d7f (diff)
downloadkristall-e6e28fd4814e1f513773288710e1bcb3cfad0028.tar.gz
Fixes bug with URL escaping, adds experimental text highlighting
Diffstat (limited to 'src/browsertab.cpp')
-rw-r--r--src/browsertab.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/browsertab.cpp b/src/browsertab.cpp
index 4bbfa20..3f9f5bb 100644
--- a/src/browsertab.cpp
+++ b/src/browsertab.cpp
@@ -73,7 +73,7 @@ void BrowserTab::navigateTo(const QUrl &url, PushToHistory mode)
this->timer.start();
this->current_location = url;
- this->ui->url_bar->setText(url.toString());
+ this->ui->url_bar->setText(url.toString(QUrl::FormattingOptions(QUrl::FullyEncoded)));
if(not gemini_client.cancelRequest()) {
QMessageBox::warning(this, "Kristall", "Failed to cancel running gemini request!");