2007-10-25 Gary Burton <gary.burton@zen.co.uk>
* src/GrampsWidgets.py: allow MonitoredEntry widgets to be updated with empty strings. issue #1314 svn: r9248
This commit is contained in:
parent
256e67cb6c
commit
3c2cbe68f2
@ -1,3 +1,7 @@
|
||||
2007-10-25 Gary Burton <gary.burton@zen.co.uk>
|
||||
* src/GrampsWidgets.py: allow MonitoredEntry widgets to be updated with
|
||||
empty strings. issue #1314
|
||||
|
||||
2007-10-25 Benny Malengier <benny.malengier@gramps-project.org>
|
||||
* src/plugins/lineage.py: gen variable conflicts with module gen
|
||||
|
||||
|
@ -412,7 +412,7 @@ class MonitoredEntry:
|
||||
self.obj.grab_focus()
|
||||
|
||||
def update(self):
|
||||
if self.get_val():
|
||||
if self.get_val() is not None:
|
||||
self.obj.set_text(self.get_val())
|
||||
|
||||
class MonitoredSpinButton:
|
||||
|
Loading…
x
Reference in New Issue
Block a user