Skip to content

Commit

Permalink
chore: follow upstream typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Decodetalkers committed Nov 28, 2024
1 parent ffe25e1 commit 26c3998
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lala_bar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ iced = { version = "0.13.1", features = [
"markdown",
] }
iced_runtime = "0.13.2"
iced_layershell = "0.10.0"
iced_layershell = "0.10.1"
tokio = { version = "1.41", features = ["full"] }
iced_futures = "0.13.2"
env_logger = "0.11.5"
Expand Down
22 changes: 11 additions & 11 deletions lala_bar/src/music_bar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ impl MultiApplication for LalaMusicBar {
..Default::default()
},
info: LaLaInfo::Calendar,
single_tone: true,
singleton: true,
}),
]);
}
Expand All @@ -643,7 +643,7 @@ impl MultiApplication for LalaMusicBar {
..Default::default()
},
info: LaLaInfo::Calendar,
single_tone: true,
singleton: true,
});
}
}
Expand Down Expand Up @@ -671,7 +671,7 @@ impl MultiApplication for LalaMusicBar {
..Default::default()
},
info: LaLaInfo::TimePicker,
single_tone: true,
singleton: true,
}),
]);
}
Expand All @@ -687,7 +687,7 @@ impl MultiApplication for LalaMusicBar {
..Default::default()
},
info: LaLaInfo::TimePicker,
single_tone: true,
singleton: true,
});
}
}
Expand Down Expand Up @@ -803,7 +803,7 @@ impl MultiApplication for LalaMusicBar {
..Default::default()
},
info: LaLaInfo::Launcher,
single_tone: true,
singleton: true,
}),
self.launcher.as_ref().unwrap().focus_input(),
]);
Expand All @@ -830,7 +830,7 @@ impl MultiApplication for LalaMusicBar {
..Default::default()
},
info: LaLaInfo::Launcher,
single_tone: true,
singleton: true,
}),
self.launcher.as_ref().unwrap().focus_input(),
]);
Expand All @@ -854,7 +854,7 @@ impl MultiApplication for LalaMusicBar {
..Default::default()
},
info: LaLaInfo::RightPanel,
single_tone: true,
singleton: true,
});
}
Message::Notify(NotifyMessage::UnitAdd(notify)) => {
Expand Down Expand Up @@ -936,7 +936,7 @@ impl MultiApplication for LalaMusicBar {
inline_reply: String::new(),
unit: *notify.clone(),
})),
single_tone: false,
singleton: false,
}));

// NOTE: remove the new one
Expand Down Expand Up @@ -970,7 +970,7 @@ impl MultiApplication for LalaMusicBar {
..Default::default()
},
info: LaLaInfo::HiddenInfo,
single_tone: true,
singleton: true,
}));
}

Expand Down Expand Up @@ -1009,7 +1009,7 @@ impl MultiApplication for LalaMusicBar {
..Default::default()
},
info: LaLaInfo::Notify(Box::new(notify_info.clone())),
single_tone: false,
singleton: false,
}));
}
if self.notifications.len() > MAX_SHOWN_NOTIFICATIONS_COUNT
Expand All @@ -1027,7 +1027,7 @@ impl MultiApplication for LalaMusicBar {
..Default::default()
},
info: LaLaInfo::HiddenInfo,
single_tone: true,
singleton: true,
}));
}
}
Expand Down

0 comments on commit 26c3998

Please sign in to comment.