Random cleanups
This commit is contained in:
parent
ac4186a0f0
commit
5c535213ad
@ -281,8 +281,8 @@ class AbstractHistory:
|
|||||||
"""The history attribute of a AbstractTab."""
|
"""The history attribute of a AbstractTab."""
|
||||||
|
|
||||||
def __init__(self, tab):
|
def __init__(self, tab):
|
||||||
self.tab = tab
|
self._tab = tab
|
||||||
self.widget = None
|
self.history = None
|
||||||
|
|
||||||
def __iter__(self):
|
def __iter__(self):
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
@ -352,11 +352,11 @@ class WebViewHistory(tab.AbstractHistory):
|
|||||||
cur_data = self.history.currentItem().userData()
|
cur_data = self.history.currentItem().userData()
|
||||||
if cur_data is not None:
|
if cur_data is not None:
|
||||||
if 'zoom' in cur_data:
|
if 'zoom' in cur_data:
|
||||||
self.tab.zoom.set_factor(cur_data['zoom'])
|
self._tab.zoom.set_factor(cur_data['zoom'])
|
||||||
if ('scroll-pos' in cur_data and
|
if ('scroll-pos' in cur_data and
|
||||||
self.tab.scroll.pos_px() == QPoint(0, 0)):
|
self._tab.scroll.pos_px() == QPoint(0, 0)):
|
||||||
QTimer.singleShot(0, functools.partial(
|
QTimer.singleShot(0, functools.partial(
|
||||||
self.tab.scroll, cur_data['scroll-pos']))
|
self._tab.scroll, cur_data['scroll-pos']))
|
||||||
|
|
||||||
|
|
||||||
class WebViewTab(tab.AbstractTab):
|
class WebViewTab(tab.AbstractTab):
|
||||||
|
Loading…
Reference in New Issue
Block a user