summaryrefslogtreecommitdiff
path: root/src/urlbar
diff options
context:
space:
mode:
authormegabigbug <megabigbug@arrakis.(none)>2010-04-18 07:10:51 +0200
committermegabigbug <megabigbug@arrakis.(none)>2010-04-18 07:10:51 +0200
commit254ea3a16b2e99502fd1e55318f7b3e2d683b3ee (patch)
tree81456e3347452ecc68cf50c4e06a85ab89b6a2ad /src/urlbar
parentrekonq 0.4.61 (diff)
downloadrekonq-254ea3a16b2e99502fd1e55318f7b3e2d683b3ee.tar.xz
fix bold: "browse" was bold if the user type "browse"
Diffstat (limited to 'src/urlbar')
-rw-r--r--src/urlbar/listitem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/urlbar/listitem.cpp b/src/urlbar/listitem.cpp
index 229b43e9..4b9831b2 100644
--- a/src/urlbar/listitem.cpp
+++ b/src/urlbar/listitem.cpp
@@ -405,7 +405,7 @@ BrowseListItem::BrowseListItem(const UrlSearchItem &item, const QString &text, Q
{
QString url = text;
layout()->addWidget(new ItemIcon(item.url.url()));
- layout()->addWidget(new ItemText("Browse <i>http://" + url.remove("http://") + "</i>", text));
+ layout()->addWidget(new ItemText("Browse <i>http://<b>" + url.remove("http://") + "</b></i>"));
layout()->addWidget(new TypeIcon(item.type));
}