diff options
author | megabigbug <megabigbug@arrakis.(none)> | 2010-04-18 07:10:51 +0200 |
---|---|---|
committer | megabigbug <megabigbug@arrakis.(none)> | 2010-04-18 07:10:51 +0200 |
commit | 254ea3a16b2e99502fd1e55318f7b3e2d683b3ee (patch) | |
tree | 81456e3347452ecc68cf50c4e06a85ab89b6a2ad /src/urlbar/listitem.cpp | |
parent | rekonq 0.4.61 (diff) | |
download | rekonq-254ea3a16b2e99502fd1e55318f7b3e2d683b3ee.tar.xz |
fix bold: "browse" was bold if the user type "browse"
Diffstat (limited to 'src/urlbar/listitem.cpp')
-rw-r--r-- | src/urlbar/listitem.cpp | 2 |
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)); } |