-
Notifications
You must be signed in to change notification settings - Fork 24
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
Fix missing locale entries #58
Conversation
Running this seems to spam a lot of this in the console:
|
BabbleApp/camera_widget.py
Outdated
else: | ||
window[self.gui_restart_calibration].update(disabled=True) | ||
window[self.gui_stop_calibration].update(disabled=True) | ||
print(lang._instance.get_string("algoritm.disabled")) | ||
print(lang._instance.get_string("info.disabled")) |
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.
Add a log.info
before this so we have the proper log level
BabbleApp/camera_widget.py
Outdated
@@ -395,11 +395,11 @@ def render(self, window, event, values): | |||
if self.settings_config.use_calibration == True: | |||
window[self.gui_restart_calibration].update(disabled=False) | |||
window[self.gui_stop_calibration].update(disabled=False) | |||
print({lang._instance.get_string("info.enabled")}) | |||
print(lang._instance.get_string("info.enabled")) |
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.
Add a log.info
before this so we have the proper log level
@@ -395,11 +395,11 @@ def render(self, window, event, values): | |||
if self.settings_config.use_calibration == True: |
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.
In the current state of the app, the "Start Calibration" and "Stop Calibration" buttons are disabled even if the app starts with the "Enable Calibration" checkbox set to true
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.
No more sourc ;(
No description provided.