-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Main window focus #9
Conversation
# Conflicts: # pymhf/injected.py
I think this is ready.
|
# Conflicts: # pymhf/gui/gui.py
…de callback to main window activation function
pymhf/core/utils.py
Outdated
import logging | ||
from typing import Optional | ||
import logging |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logging
is imported twice
@@ -260,7 +260,8 @@ def on_update(_, app_data, user_data): | |||
source=tag, | |||
callback=on_update, | |||
user_data=(cls, variable), | |||
**extra_args, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these changes are not required. If you want to have on_enter=True
, then specify it in the STRING
variable decorator as an extra arg and it will come through to here (cf. lines 257 & 258)
set_main_window_focus()