mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
...
This commit is contained in:
parent
62053955d6
commit
f9714b37f0
@ -463,7 +463,12 @@ class MetadataSingleDialogBase(ResizableDialog):
|
|||||||
ResizableDialog.reject(self)
|
ResizableDialog.reject(self)
|
||||||
|
|
||||||
def save_state(self):
|
def save_state(self):
|
||||||
gprefs['metasingle_window_geometry3'] = bytearray(self.saveGeometry())
|
try:
|
||||||
|
gprefs['metasingle_window_geometry3'] = bytearray(self.saveGeometry())
|
||||||
|
except:
|
||||||
|
# Weird failure, see https://bugs.launchpad.net/bugs/995271
|
||||||
|
import traceback
|
||||||
|
traceback.print_exc()
|
||||||
|
|
||||||
# Dialog use methods {{{
|
# Dialog use methods {{{
|
||||||
def start(self, row_list, current_row, view_slot=None,
|
def start(self, row_list, current_row, view_slot=None,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user