ClockSettings: Add 'show seconds' toggle to time format settings

This commit is contained in:
cflip
2022-04-12 18:01:35 -06:00
committed by Tim Flynn
parent b2ef7ee531
commit 0a92dbd390
Notes: sideshowbarker 2024-07-17 11:47:29 +09:00
3 changed files with 34 additions and 5 deletions

View File

@@ -18,7 +18,10 @@ private:
virtual void apply_settings() override;
virtual void reset_default_values() override;
void update_time_format_string();
RefPtr<GUI::RadioButton> m_24_hour_radio;
RefPtr<GUI::CheckBox> m_show_seconds_checkbox;
RefPtr<GUI::TextBox> m_custom_format_input;
String m_date_format;