Skip to content

Commit

Permalink
tab order fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
DoTheEvo committed Mar 29, 2015
1 parent d6b41e9 commit 03708d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion angrysearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ def initUI(self):
grid.addWidget(self.main_list, 2, 1, 4, 4)
self.setLayout(grid)

self.setTabOrder(self.search_input, self.main_list)
self.setTabOrder(self.main_list, self.upd_button)


# THE MAIN APPLICATION WINDOW WITH STATUS BAR AND LOGIC
class GUI_MainWindow(QMainWindow):
Expand Down Expand Up @@ -311,7 +314,6 @@ def show_first_500(self):
self.update_file_list_results(l)
total = str(locale.format('%d', total_rows_numb, grouping=True))
self.status_bar.showMessage(str(total))
self.center.search_input.setFocus()

def detect_file_manager(self):
try:
Expand Down

0 comments on commit 03708d7

Please sign in to comment.