[Chore] Config Window: 各設定項目の一番最後の要素 border bottom消し。

項目の移動や追加などで毎回指定するのが手間なので後回しにしていたが、リリースに向けて今回すべて指定。
This commit is contained in:
Sakamoto Shiina
2023-10-08 20:58:10 +09:00
parent 9fce7f6a94
commit c87c3fa4da
6 changed files with 6 additions and 6 deletions

View File

@@ -34,5 +34,5 @@ def createSettingBox_AdvancedSettings(setting_box_wrapper, config_window, settin
entry_bind__Any_KeyRelease=lambda value: entry_port_callback(value),
entry_textvariable=view_variable.VAR_OSC_PORT,
)
config_window.sb__port.grid(row=row)
config_window.sb__port.grid(row=row, pady=0)
row+=1

View File

@@ -84,5 +84,5 @@ def createSettingBox_Appearance(setting_box_wrapper, config_window, settings, vi
command=lambda value: optionmenu_ui_language_callback(value),
variable=view_variable.VAR_UI_LANGUAGE,
)
config_window.sb__ui_language.grid(row=row)
config_window.sb__ui_language.grid(row=row, pady=0)
row+=1

View File

@@ -91,6 +91,6 @@ def createSettingBox_Others(setting_box_wrapper, config_window, settings, view_v
command=lambda: checkbox_startup_osc_enabled_check_callback(config_window.sb__checkbox_startup_osc_enabled_check),
variable=view_variable.VAR_STARTUP_OSC_ENABLED_CHECK,
)
config_window.sb__startup_osc_enabled_check.grid(row=row)
config_window.sb__startup_osc_enabled_check.grid(row=row, pady=0)
row+=1

View File

@@ -150,5 +150,5 @@ def createSettingBox_Mic(setting_box_wrapper, config_window, settings, view_vari
entry_bind__Any_KeyRelease=lambda value: entry_input_mic_word_filters_callback(value),
entry_textvariable=view_variable.VAR_MIC_WORD_FILTER,
)
config_window.sb__mic_word_filter.grid(row=row)
config_window.sb__mic_word_filter.grid(row=row, pady=0)
row+=1

View File

@@ -120,6 +120,6 @@ def createSettingBox_Speaker(setting_box_wrapper, config_window, settings, view_
entry_textvariable=view_variable.VAR_SPEAKER_MAX_PHRASES,
entry_bind__FocusOut=view_variable.CALLBACK_FOCUS_OUT_SPEAKER_MAX_PHRASES,
)
config_window.sb__speaker_max_phrases.grid(row=row)
config_window.sb__speaker_max_phrases.grid(row=row, pady=0)
row+=1
# __________

View File

@@ -20,5 +20,5 @@ def createSettingBox_Translation(setting_box_wrapper, config_window, settings, v
entry_bind__Any_KeyRelease=lambda value: deepl_authkey_callback(value),
entry_textvariable=view_variable.VAR_DEEPL_AUTH_KEY,
)
config_window.sb__deepl_authkey.grid(row=row)
config_window.sb__deepl_authkey.grid(row=row, pady=0)
row+=1