[bugfix] Config Window Font Family CALLBACK関数登録のし忘れ(テスト用にコメントアウトしたままだった)と、実際にフォント選択時に正しく関数が動いていなかったのを修正

This commit is contained in:
Sakamoto Shiina
2023-09-04 18:29:04 +09:00
parent 90668b1e7a
commit fb22ffa31e
2 changed files with 2 additions and 18 deletions

View File

@@ -19,7 +19,7 @@ def createSettingBox_Appearance(setting_box_wrapper, config_window, settings):
callFunctionIfCallable(config_window.CALLBACK_SET_UI_SCALING, value)
def optionmenu_font_family_callback(value):
callFunctionIfCallable(config_window.view_variable.CALLBACK_SET_FONT_FAMILY, value)
callFunctionIfCallable(config_window.CALLBACK_SET_FONT_FAMILY, value)
def optionmenu_ui_language_callback(value):
callFunctionIfCallable(config_window.CALLBACK_SET_UI_LANGUAGE, value)