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