mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
BookmarksToolBarButton: Don't show empty title in tooltip
BUG: 399233 FIXED-IN: 3.1.0
This commit is contained in:
parent
956b99c1cb
commit
53d35dbdbd
|
@ -243,11 +243,15 @@ QString BookmarksToolbarButton::createTooltip() const
|
|||
return m_bookmark->description();
|
||||
}
|
||||
|
||||
if (!m_bookmark->url().isEmpty()) {
|
||||
if (!m_bookmark->title().isEmpty() && !m_bookmark->url().isEmpty()) {
|
||||
return QString("%1\n%2").arg(m_bookmark->title(), m_bookmark->urlString());
|
||||
}
|
||||
|
||||
return m_bookmark->title();
|
||||
if (!m_bookmark->title().isEmpty()) {
|
||||
return m_bookmark->title();
|
||||
}
|
||||
|
||||
return m_bookmark->urlString();
|
||||
}
|
||||
|
||||
void BookmarksToolbarButton::enterEvent(QEvent* event)
|
||||
|
|
Loading…
Reference in New Issue
Block a user