Merge branch 'bugfix_messagebox' into UI_2.0

# Conflicts:
#	view.py
This commit is contained in:
misyaguziya
2023-08-31 23:28:32 +09:00
2 changed files with 10 additions and 12 deletions

14
main.py
View File

@@ -260,13 +260,13 @@ view.register(
# 辞書型で関数を渡しても上手く行かず、仕方なくタプルで渡してる。
# 本当はコメントアウト以下とview.py内33,34行目)しているようにできたらいいけど、
# _tkinter.TclError: unknown option "-bind_Any_KeyPress"みたいにエラーがでる。
entry_message_box=None,
# entry_message_box={
# "bind_Return": messageBoxPressKeyEnter,
# "bind_Any_KeyPress": messageBoxPressKeyAny,
# },
entry_message_box_bind_Return=messageBoxPressKeyEnter,
entry_message_box_bind_Any_KeyPress=messageBoxPressKeyAny,
# entry_message_box=None,
entry_message_box_commands={
"bind_Return": messageBoxPressKeyEnter,
"bind_Any_KeyPress": messageBoxPressKeyAny,
},
# entry_message_box_bind_Return=messageBoxPressKeyEnter,
# entry_message_box_bind_Any_KeyPress=messageBoxPressKeyAny,
config_window={
"callback_disable_config_window_compact_mode": callbackEnableConfigWindowCompactMode,