diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-04-19 10:16:20 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-04-19 10:16:20 +0200 |
commit | 19b5313c22a1449b5bbf5d79a79bb92e57d2ef41 (patch) | |
tree | f674370e2f9dcdb7093f600472ccfec912422f99 /src/urlbar/listitem.cpp | |
parent | Merge commit 'refs/merge-requests/2243' of git://gitorious.org/rekonq/mainlin... (diff) | |
parent | fix bold: "browse" was bold if the user type "browse" (diff) | |
download | rekonq-19b5313c22a1449b5bbf5d79a79bb92e57d2ef41.tar.xz |
Merge commit 'refs/merge-requests/2244' of git://gitorious.org/rekonq/mainline
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)); } |