Skip to content

Commit

Permalink
fixed resetting of text widgets
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsgalore committed Jan 18, 2019
1 parent 95732cd commit 8b3751d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tapeimgr/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,9 @@ def reset_gui(self):
self.extension_entry.insert(tk.END, self.tape.extension)
self.identifier_entry.delete(0, tk.END)
self.identifier_entry.insert(tk.END, self.tape.identifier)
self.description_entry.delete(0, tk.END)
self.description_entry.delete(1.0, tk.END)
self.description_entry.insert(tk.END, self.tape.description)
self.notes_entry.delete(0, tk.END)
self.notes_entry.delete(1.0, tk.END)
self.notes_entry.insert(tk.END, self.tape.notes)
self.fillblocks_entry.variable = self.tape.fillBlocks
self.start_button.config(state='normal')
Expand Down

0 comments on commit 8b3751d

Please sign in to comment.