You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "../keyboardlayouteditor/Key.py", line 79, in drag_data_get_callback
(selection.data[1] == 'u' or selection.data[1] == 'U'):
IndexError: string index out of range
Changing it to:
if selection.data[0] == '\\' and \
(len(selection.data) > 1) and \
(selection.data[1] == 'u' or selection.data[1] == 'U'):
worked.
The text was updated successfully, but these errors were encountered:
Changing it to:
worked.
The text was updated successfully, but these errors were encountered: