parent
d01a0b1d64
commit
400e1bc7d7
@ -41,6 +41,7 @@ Changed
|
||||
a performance and stability improvement.
|
||||
- The `url.incdec_segments` option now also can take `port` as possible segment.
|
||||
- QtWebEngine: `:view-source` now uses Chromium's `view-source:` scheme.
|
||||
- Tabs now show their full title as tooltip.
|
||||
|
||||
Fixed
|
||||
~~~~~
|
||||
|
@ -148,7 +148,10 @@ class TabWidget(QTabWidget):
|
||||
fields['index'] = idx + 1
|
||||
|
||||
title = '' if fmt is None else fmt.format(**fields)
|
||||
self.tabBar().setTabText(idx, title)
|
||||
tabbar = self.tabBar()
|
||||
|
||||
tabbar.setTabText(idx, title)
|
||||
tabbar.setTabToolTip(idx, title)
|
||||
|
||||
def get_tab_fields(self, idx):
|
||||
"""Get the tab field data."""
|
||||
|
Loading…
Reference in New Issue
Block a user