Update docs

This commit is contained in:
Florian Bruhin 2019-03-04 14:18:48 +01:00
parent 05a65fdb2f
commit 9b66987588
2 changed files with 3 additions and 1 deletions

View File

@ -26,6 +26,8 @@ Changed
- The desktop file `qutebrowser.desktop` is now renamed to
`org.qutebrowser.qutebrowser.desktop`.
- Pinned tabs now always show a favicon (even if the site doesn't provide one)
when shrinking.
Fixed
~~~~~

View File

@ -356,7 +356,7 @@ class TabWidget(QTabWidget):
self.window().setWindowIcon(self.window().windowIcon())
def setTabIcon(self, idx: int, icon: QIcon):
"""Add overrides for setting tab icon sometimes when it is empty."""
"""Always show tab icons for pinned tabs in some circumstances."""
tab = self.widget(idx)
if (icon.isNull() and
config.cache['tabs.favicons.show'] != 'never' and