Skip to content

Commit

Permalink
changed unlock_ui other to unlock the search entry last
Browse files Browse the repository at this point in the history
  • Loading branch information
ericbsd committed Nov 19, 2020
1 parent 43eafea commit b558371
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# ,,python setup.py build_i18n -m''

# silence pyflakes, __VERSION__ is properly assigned below...
__VERSION__ = '0.1'
__VERSION__ = '1.1'

# for line in open('gbinstall', 'r').readlines():
# if (line.startswith('__VERSION__')):
Expand Down
6 changes: 3 additions & 3 deletions software-station
Original file line number Diff line number Diff line change
Expand Up @@ -313,11 +313,11 @@ class TableWindow(Gtk.Window):
self.unlock_ui()

def unlock_ui(self):
self.search_entry.set_sensitive(True)
self.available_toggle.set_sensitive(True)
self.installed_toggle.set_sensitive(True)
self.origin_treeview.set_sensitive(True)
self.pkgtreeview.set_sensitive(True)
self.available_toggle.set_sensitive(True)
self.installed_toggle.set_sensitive(True)
self.search_entry.set_sensitive(True)

def lock_ui(self):
self.search_entry.set_sensitive(False)
Expand Down

0 comments on commit b558371

Please sign in to comment.