We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8787d6 commit 5ecb3d9Copy full SHA for 5ecb3d9
cosmic-applet-time/src/window.rs
@@ -500,12 +500,12 @@ impl cosmic::Application for Window {
500
501
let mut time_bag: Bag = Bag::empty();
502
503
- time_bag.hour = Some(components::Numeric::Numeric);
504
- time_bag.minute = Some(components::Numeric::Numeric);
+ time_bag.hour = Some(components::Numeric::TwoDigit);
+ time_bag.minute = Some(components::Numeric::TwoDigit);
505
time_bag.second = self
506
.config
507
.show_seconds
508
- .then_some(components::Numeric::Numeric);
+ .then_some(components::Numeric::TwoDigit);
509
510
let hour_cycle = if self.config.military_time {
511
preferences::HourCycle::H23
0 commit comments