Connect tab.open_tab to correct internal slot.
This commit is contained in:
parent
5ce49553d8
commit
f8195dc600
@ -136,9 +136,10 @@ class TabbedBrowser(TabWidget):
|
|||||||
tab.hintmanager.openurl.connect(self.cur.openurl_slot)
|
tab.hintmanager.openurl.connect(self.cur.openurl_slot)
|
||||||
# misc
|
# misc
|
||||||
tab.titleChanged.connect(self.on_title_changed)
|
tab.titleChanged.connect(self.on_title_changed)
|
||||||
tab.open_tab.connect(self.tabopen)
|
tab.open_tab.connect(self._tabopen)
|
||||||
tab.iconChanged.connect(self.on_icon_changed)
|
tab.iconChanged.connect(self.on_icon_changed)
|
||||||
|
|
||||||
|
@pyqtSlot(str, bool)
|
||||||
def _tabopen(self, url, background=False):
|
def _tabopen(self, url, background=False):
|
||||||
"""Open a new tab with a given url.
|
"""Open a new tab with a given url.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user