Added exception handling to bind methods
This commit is contained in:
parent
9971414a2c
commit
846af285b3
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
version = __version__ = "4.59.0.5 Released 5-Apr-2022"
|
version = __version__ = "4.59.0.6 Released 5-Apr-2022"
|
||||||
|
|
||||||
_change_log = """
|
_change_log = """
|
||||||
Changelog since 4.59.0 released to PyPI on 5-Apr-2022
|
Changelog since 4.59.0 released to PyPI on 5-Apr-2022
|
||||||
|
@ -26,6 +26,8 @@ _change_log = """
|
||||||
The auto-numbering freature is not yet implemented. Only 1 file is used and is overwritten if exists
|
The auto-numbering freature is not yet implemented. Only 1 file is used and is overwritten if exists
|
||||||
4.59.0.5
|
4.59.0.5
|
||||||
Fixed the font and sizing of the "Editor Settings" section
|
Fixed the font and sizing of the "Editor Settings" section
|
||||||
|
4.59.0.6
|
||||||
|
Added exception handing to the bind methods
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -1399,7 +1401,14 @@ class Element():
|
||||||
if not self._widget_was_created(): # if widget hasn't been created yet, then don't allow
|
if not self._widget_was_created(): # if widget hasn't been created yet, then don't allow
|
||||||
return
|
return
|
||||||
|
|
||||||
|
if not self._is_window_created('tried Window.bind'):
|
||||||
|
return
|
||||||
|
try:
|
||||||
self.Widget.bind(bind_string, lambda evt: self._user_bind_callback(bind_string, evt, propagate))
|
self.Widget.bind(bind_string, lambda evt: self._user_bind_callback(bind_string, evt, propagate))
|
||||||
|
except Exception as e:
|
||||||
|
self.Widget.unbind_all(bind_string)
|
||||||
|
return
|
||||||
|
|
||||||
self.user_bind_dict[bind_string] = key_modifier
|
self.user_bind_dict[bind_string] = key_modifier
|
||||||
|
|
||||||
def unbind(self, bind_string):
|
def unbind(self, bind_string):
|
||||||
|
@ -11210,7 +11219,12 @@ class Window:
|
||||||
"""
|
"""
|
||||||
if not self._is_window_created('tried Window.bind'):
|
if not self._is_window_created('tried Window.bind'):
|
||||||
return
|
return
|
||||||
|
try:
|
||||||
self.TKroot.bind(bind_string, lambda evt: self._user_bind_callback(bind_string, evt, propagate))
|
self.TKroot.bind(bind_string, lambda evt: self._user_bind_callback(bind_string, evt, propagate))
|
||||||
|
except Exception as e:
|
||||||
|
self.TKroot.unbind_all(bind_string)
|
||||||
|
return
|
||||||
|
# _error_popup_with_traceback('Window.bind error', e)
|
||||||
self.user_bind_dict[bind_string] = key
|
self.user_bind_dict[bind_string] = key
|
||||||
|
|
||||||
def _callback_main_debugger_window_create_keystroke(self, event):
|
def _callback_main_debugger_window_create_keystroke(self, event):
|
||||||
|
|
Loading…
Reference in New Issue