diff options
author | megabigbug <megabigbug@arrakis.(none)> | 2010-05-21 22:34:23 +0200 |
---|---|---|
committer | megabigbug <megabigbug@arrakis.(none)> | 2010-05-21 22:34:23 +0200 |
commit | 5d91b70d2fafde96bd978b65724a770ff22390b4 (patch) | |
tree | 0b05c170b8a3f013e164e4e031b7013046437a5d /src | |
parent | show url on file:// && ftp:// schemes (diff) | |
download | rekonq-5d91b70d2fafde96bd978b65724a770ff22390b4.tar.xz |
listitem: when the title of an item is empty fallback to domain name of the url.
Diffstat (limited to 'src')
-rw-r--r-- | src/urlbar/listitem.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/urlbar/listitem.cpp b/src/urlbar/listitem.cpp index f91840d2..5254c7dc 100644 --- a/src/urlbar/listitem.cpp +++ b/src/urlbar/listitem.cpp @@ -220,7 +220,16 @@ PreviewListItem::PreviewListItem(const UrlSearchItem &item, const QString &text, QVBoxLayout *vLayout = new QVBoxLayout; vLayout->setMargin(0); - vLayout->addWidget(new TextLabel(item.title, text, this)); + + QString title = item.title; + if (title.isEmpty()) + { + title = item.url.url(); + title = title.remove("http://"); + title.truncate(title.indexOf("/")); + } + + vLayout->addWidget(new TextLabel(title, text, this)); vLayout->addWidget(new TextLabel("<i>" + item.url.url() + "</i>", text, this)); hLayout->addLayout(vLayout); |