Remove wrong 'cur.' for BrowserTab
This commit is contained in:
parent
ad29867aa6
commit
4925d25c36
@ -383,7 +383,7 @@ class TabbedBrowser(TabWidget):
|
|||||||
mode = QClipboard.Selection if sel else QClipboard.Clipboard
|
mode = QClipboard.Selection if sel else QClipboard.Clipboard
|
||||||
url = clip.text(mode)
|
url = clip.text(mode)
|
||||||
logging.debug("Clipboard contained: '{}'".format(url))
|
logging.debug("Clipboard contained: '{}'".format(url))
|
||||||
self.cur.openurl(url)
|
self.openurl(url)
|
||||||
|
|
||||||
def tabpaste(self, sel=False):
|
def tabpaste(self, sel=False):
|
||||||
"""Open a page from the clipboard in a new tab.
|
"""Open a page from the clipboard in a new tab.
|
||||||
@ -794,7 +794,7 @@ class BrowserTab(QWebView):
|
|||||||
if self._open_new_tab:
|
if self._open_new_tab:
|
||||||
self.open_tab.emit(url)
|
self.open_tab.emit(url)
|
||||||
else:
|
else:
|
||||||
self.cur.openurl(url)
|
self.openurl(url)
|
||||||
|
|
||||||
def shutdown(self, callback=None):
|
def shutdown(self, callback=None):
|
||||||
"""Shut down the tab cleanly and remove it.
|
"""Shut down the tab cleanly and remove it.
|
||||||
|
Loading…
Reference in New Issue
Block a user