We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27c14d2 commit 59b5ddcCopy full SHA for 59b5ddc
src/modules/clock.rs
@@ -58,17 +58,17 @@ pub struct ClockModule {
58
#[serde(default)]
59
orientation: ModuleOrientation,
60
61
- /// See [common options](module-level-options#common-options).
62
- #[serde(flatten)]
63
- pub common: Option<CommonConfig>,
64
-
65
/// The justification (alignment) of the date/time shown on the bar.
66
///
67
/// **Valid options**: `left`, `right`, `center`, `fill`
68
/// <br>
69
/// **Default**: `left`
70
71
justify: ModuleJustification,
+
+ /// See [common options](module-level-options#common-options).
+ #[serde(flatten)]
+ pub common: Option<CommonConfig>,
72
}
73
74
impl Default for ClockModule {
0 commit comments