This commit is contained in:
Kovid Goyal 2023-04-26 14:12:46 +05:30
parent 2a58a4b1a8
commit 55b6205d84
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -206,7 +206,7 @@ class PreserveViewState: # {{{
def state(self):
self.__enter__()
return {x:getattr(self, x) for x in ('selected_ids', 'current_id',
'vscroll', 'hscroll')}
'vscroll', 'hscroll', 'row', 'col')}
@state.setter
def state(self, state):