1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 09:32:12 +01:00

Only set the unloaded tab color if the url is not empty

This commit is contained in:
Charles 2013-06-18 14:33:05 +07:00
parent 7882cbcc98
commit 18f65a66f6

View File

@ -269,7 +269,9 @@ void WebTab::restoreTab(const WebTab::SavedTab &tab)
m_view->tabWidget()->setTabIcon(index, tab.icon);
m_view->tabWidget()->setTabText(index, tab.title);
m_view->tabWidget()->tabBar()->setTabTextColor(index, QColor(100, 100, 100));
if (! tab.url.isEmpty()) {
m_view->tabWidget()->tabBar()->setTabTextColor(index, QColor(100, 100, 100));
}
m_view->tabWidget()->setTabToolTip(index, tab.title);
m_locationBar.data()->showUrl(tab.url);
}