Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog.

This commit is contained in:
Andrew Svetlov 2012-07-30 19:59:53 +03:00
parent 3b796680c3
commit 1fb0e3f3a2
3 changed files with 5 additions and 1 deletions

View file

@ -282,7 +282,7 @@ class _QueryDialog(Dialog):
self.entry = Entry(master, name="entry")
self.entry.grid(row=1, padx=5, sticky=W+E)
if self.initialvalue:
if self.initialvalue is not None:
self.entry.insert(0, self.initialvalue)
self.entry.select_range(0, END)