Skip to content

Commit b8787d6

Browse files
committed
swapped day & month positions on the vertical layout
1 parent 4dbea64 commit b8787d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cosmic-applet-time/src/window.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,13 +481,13 @@ impl cosmic::Application for Window {
481481
elements.push(
482482
self.core
483483
.applet
484-
.text(format!("{:02}", self.now.day()))
484+
.text(format!("{:02}", self.now.month()))
485485
.into(),
486486
);
487487
elements.push(
488488
self.core
489489
.applet
490-
.text(format!("{:02}", self.now.month()))
490+
.text(format!("{:02}", self.now.day()))
491491
.into(),
492492
);
493493

0 commit comments

Comments
 (0)