Untitled

 avatar
unknown
plain_text
4 months ago
711 B
3
Indexable
self.create_separator(self.scrollable_frame)

# Bin Configuration section
self.create_section_title(
    self.scrollable_frame,
    TRANSLATIONS[current_language].get('bin_configuration', 'Bin Configuration')
)

# Bin configuration button
bin_config_button = ctk.CTkButton(
    self.scrollable_frame,
    text=TRANSLATIONS[current_language].get('customize_bins', 'Customize Bins'),
    command=lambda: BinCustomizationScreen(
        self.winfo_toplevel(),
        dark_mode=self.dark_mode,
        language=self.language
    ),
    font=("Dongle", 16),
    fg_color=self.button_color,
    hover_color=self.button_hover,
    text_color=self.text_color
)
bin_config_button.pack(pady=(10, 0), padx=20, anchor='w')
Editor is loading...
Leave a Comment