mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 11:14:02 +02:00
Fix #1188 (When clicking the configuration button the following error occurred)
This commit is contained in:
parent
59ecde1963
commit
e3288677e7
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ def __init__(self, window, db, columns):
|
|||
self.db = db
|
||||
self.current_cols = columns
|
||||
path = prefs['library_path']
|
||||
self.location.setText(path)
|
||||
self.location.setText(path if path else '')
|
||||
self.connect(self.browse_button, SIGNAL('clicked(bool)'), self.browse)
|
||||
self.connect(self.compact_button, SIGNAL('clicked(bool)'), self.compact)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue