Skip to content

Commit

Permalink
Fixes #12
Browse files Browse the repository at this point in the history
Bump patch number
  • Loading branch information
wsarce committed Apr 13, 2022
1 parent a45faaf commit cfbb1b5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions session_manager_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,14 @@ def on_press(self, key):
else:
print("INFO: Typing outside window")
except AttributeError:
# Only process key input if the main window has focus, otherwise ignore
if self.root.focus_get():
self.handle_global_press(key)
else:
print("INFO: Typing outside window")
try:
# Only process key input if the main window has focus, otherwise ignore
if self.root.focus_get():
self.handle_global_press(key)
else:
print("INFO: Typing outside window")
except KeyError as e:
print(f"ERROR: Exception encountered when processing key {str(e)}")

def on_release(self, key):
pass
Expand Down
2 changes: 1 addition & 1 deletion ui_params.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cometrics_version = "1.0.6"
cometrics_version = "1.0.7"
ui_title = f"cometrics v{cometrics_version}"

cometrics_data_root = fr'C:\cometrics'
Expand Down

0 comments on commit cfbb1b5

Please sign in to comment.