[Chore] remove the code that is no longer in use

This commit is contained in:
Sakamoto Shiina
2023-10-01 13:40:54 +09:00
parent c287df5c10
commit 913b18c5cc
2 changed files with 1 additions and 7 deletions

View File

@@ -15,7 +15,6 @@ def _createSettingBoxContainer(config_window, settings, view_variable, setting_b
text_color=settings.ctm.LABELS_TEXT_COLOR text_color=settings.ctm.LABELS_TEXT_COLOR
) )
setting_box_wrapper_section_title.place(relx=0, rely=0) setting_box_wrapper_section_title.place(relx=0, rely=0)
# setting_box_wrapper_section_title.grid(row=0, column=0, padx=0, pady=settings.uism.SB__SECTION_TITLE_BOTTOM_PADY)
return container_widget return container_widget
@@ -28,7 +27,6 @@ def _createSettingBoxContainer(config_window, settings, view_variable, setting_b
# setting_boxes_length = len(setting_box_container_settings["setting_boxes"])
setting_box_row=0 setting_box_row=0
for i, setting_box_setting in enumerate(setting_box_container_settings["setting_boxes"]): for i, setting_box_setting in enumerate(setting_box_container_settings["setting_boxes"]):
# Top-Padding that can be container the section title # Top-Padding that can be container the section title

View File

@@ -1,7 +1,7 @@
from functools import partial from functools import partial
from typing import Union from typing import Union
from customtkinter import CTkOptionMenu, CTkFont, CTkFrame, CTkLabel, CTkRadioButton, CTkEntry, CTkSlider, CTkSwitch, CTkCheckBox, CTkProgressBar, END as CTK_END from customtkinter import CTkOptionMenu, CTkFont, CTkFrame, CTkLabel, CTkRadioButton, CTkEntry, CTkSlider, CTkSwitch, CTkCheckBox, CTkProgressBar
from vrct_gui.ui_utils import createButtonWithImage, getLatestWidth from vrct_gui.ui_utils import createButtonWithImage, getLatestWidth
@@ -19,12 +19,10 @@ class _SettingBoxGenerator():
setting_box_frame = CTkFrame(self.parent_widget, corner_radius=0, fg_color=self.settings.ctm.SB__BG_COLOR, width=0, height=0) setting_box_frame = CTkFrame(self.parent_widget, corner_radius=0, fg_color=self.settings.ctm.SB__BG_COLOR, width=0, height=0)
# "pady=(0,1)" is for bottom padding. It can be removed(override) when you do like "self.attr_name.grid(row=row, pady=0)" # "pady=(0,1)" is for bottom padding. It can be removed(override) when you do like "self.attr_name.grid(row=row, pady=0)"
# setting_box_frame.grid(column=0, padx=0, pady=0, sticky="ew")
setting_box_frame.grid(column=0, padx=0, pady=(0,1), sticky="ew") setting_box_frame.grid(column=0, padx=0, pady=(0,1), sticky="ew")
setting_box_frame.grid_columnconfigure(0, weight=1) setting_box_frame.grid_columnconfigure(0, weight=1)
# setting_box_frame_wrapper = CTkFrame(setting_box_frame, corner_radius=0, fg_color="gray", width=0, height=0)
setting_box_frame_wrapper = CTkFrame(setting_box_frame, corner_radius=0, fg_color=self.settings.ctm.SB__BG_COLOR, width=0, height=0) setting_box_frame_wrapper = CTkFrame(setting_box_frame, corner_radius=0, fg_color=self.settings.ctm.SB__BG_COLOR, width=0, height=0)
setting_box_frame_wrapper.grid(row=0, column=0, padx=self.settings.uism.SB__IPADX, pady=self.settings.uism.SB__IPADY, sticky="ew") setting_box_frame_wrapper.grid(row=0, column=0, padx=self.settings.uism.SB__IPADX, pady=self.settings.uism.SB__IPADY, sticky="ew")
setting_box_frame_wrapper.grid_columnconfigure(0, weight=0, minsize=int(self.settings.uism.SB__MAIN_WIDTH / 2)) setting_box_frame_wrapper.grid_columnconfigure(0, weight=0, minsize=int(self.settings.uism.SB__MAIN_WIDTH / 2))
@@ -153,8 +151,6 @@ class _SettingBoxGenerator():
) )
setattr(self.config_window, checkbox_attr_name, checkbox_widget) setattr(self.config_window, checkbox_attr_name, checkbox_widget)
# checkbox_widget.select() if is_checked else checkbox_widget.deselect()
checkbox_widget.grid(row=1, column=SETTING_BOX_COLUMN, sticky="e") checkbox_widget.grid(row=1, column=SETTING_BOX_COLUMN, sticky="e")
return setting_box_frame return setting_box_frame