We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9db703e commit 4dbea64Copy full SHA for 4dbea64
cosmic-applet-time/src/window.rs
@@ -490,7 +490,7 @@ impl cosmic::Application for Window {
490
.text(format!("{:02}", self.now.month()))
491
.into(),
492
);
493
-
+
494
elements.push(
495
horizontal_rule(2)
496
.width(self.core.applet.suggested_size(true).0)
@@ -502,6 +502,10 @@ impl cosmic::Application for Window {
502
503
time_bag.hour = Some(components::Numeric::Numeric);
504
time_bag.minute = Some(components::Numeric::Numeric);
505
+ time_bag.second = self
506
+ .config
507
+ .show_seconds
508
+ .then_some(components::Numeric::Numeric);
509
510
let hour_cycle = if self.config.military_time {
511
preferences::HourCycle::H23
0 commit comments