1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:27:35 +00:00

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
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;