1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 18:57:36 +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

@ -8,7 +8,7 @@
@GUI::GroupBox {
title: "Time Format"
shrink_to_fit: false
fixed_height: 160
fixed_height: 200
layout: @GUI::VerticalBoxLayout {
margins: [16, 8, 8]
}
@ -26,14 +26,21 @@
@GUI::RadioButton {
name: "24hour_radio"
text: "24-hour (12:34:56)"
text: "24-hour"
}
@GUI::RadioButton {
name: "12hour_radio"
text: "12-hour (12:34 a.m)"
text: "12-hour"
}
@GUI::CheckBox {
name: "seconds_checkbox"
text: "Show seconds"
}
@GUI::HorizontalSeparator {}
@GUI::RadioButton {
name: "custom_radio"
text: "Custom:"