Some other formatting changes
This commit is contained in:
parent
7edb257e2f
commit
e0201ccb50
|
@ -19,15 +19,6 @@ jobs:
|
||||||
# - uses: actions-rust-lang/setup-rust-toolchain@v1
|
# - uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
# - run: cargo test
|
# - run: cargo test
|
||||||
|
|
||||||
#fmt:
|
|
||||||
# name: Rustfmt
|
|
||||||
# runs-on: ubuntu-latest
|
|
||||||
# steps:
|
|
||||||
# - uses: actions/checkout@v4
|
|
||||||
# - uses: actions-rust-lang/setup-rust-toolchain@v1
|
|
||||||
# - run: rustup component add rustfmt
|
|
||||||
# - run: cargo fmt --all -- --check
|
|
||||||
|
|
||||||
clippy:
|
clippy:
|
||||||
name: Clippy
|
name: Clippy
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
@ -42,8 +42,8 @@ impl ComponentContextMenu for ContextMenu {
|
||||||
if ui.button(RichText::new("Delete").color(Color32::RED)).clicked() {
|
if ui.button(RichText::new("Delete").color(Color32::RED)).clicked() {
|
||||||
let w = gui.windows.get_window::<windows::confirm::ConfirmW>(WindowIndex::Confirm);
|
let w = gui.windows.get_window::<windows::confirm::ConfirmW>(WindowIndex::Confirm);
|
||||||
w.set_message(
|
w.set_message(
|
||||||
&"side_nav_playlist_manifest_delete",
|
"side_nav_playlist_manifest_delete",
|
||||||
&"This will delete the playlist from the manifest file. This is NOT reversible",
|
"This will delete the playlist from the manifest file. This is NOT reversible",
|
||||||
&[playlist_name.clone()]
|
&[playlist_name.clone()]
|
||||||
);
|
);
|
||||||
gui.windows.open(WindowIndex::Confirm, true);
|
gui.windows.open(WindowIndex::Confirm, true);
|
||||||
|
|
|
@ -84,8 +84,8 @@ impl ComponentContextMenu for ContextMenu {
|
||||||
if ui.button(RichText::new("Delete").color(Color32::RED)).clicked() {
|
if ui.button(RichText::new("Delete").color(Color32::RED)).clicked() {
|
||||||
let w = gui.windows.get_window::<windows::confirm::ConfirmW>(WindowIndex::Confirm);
|
let w = gui.windows.get_window::<windows::confirm::ConfirmW>(WindowIndex::Confirm);
|
||||||
w.set_message(
|
w.set_message(
|
||||||
&"song_list_song_manifest_delete",
|
"song_list_song_manifest_delete",
|
||||||
&"This will delete the song from the manifest file. This is NOT reversible",
|
"This will delete the song from the manifest file. This is NOT reversible",
|
||||||
&[data.playlist_name().clone(), data.song_name().clone()]
|
&[data.playlist_name().clone(), data.song_name().clone()]
|
||||||
);
|
);
|
||||||
gui.windows.open(WindowIndex::Confirm, true);
|
gui.windows.open(WindowIndex::Confirm, true);
|
||||||
|
|
|
@ -53,7 +53,7 @@ impl Gui {
|
||||||
|
|
||||||
pub fn throw_error<S: ToString>(&mut self, text: S) {
|
pub fn throw_error<S: ToString>(&mut self, text: S) {
|
||||||
let w = self.windows.get_window::<windows::error::GuiError>(WindowIndex::Error);
|
let w = self.windows.get_window::<windows::error::GuiError>(WindowIndex::Error);
|
||||||
w.set_error_message(&text);
|
w.set_error_message(text);
|
||||||
self.windows.open(WindowIndex::Error, true);
|
self.windows.open(WindowIndex::Error, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,7 +41,7 @@ impl Window for ConfirmW {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ConfirmW {
|
impl ConfirmW {
|
||||||
pub fn set_message<S: ToString>(&mut self, new_id: &S, text: &S, data: &[String]) {
|
pub fn set_message<S: ToString>(&mut self, new_id: S, text: S, data: &[String]) {
|
||||||
self.text = text.to_string();
|
self.text = text.to_string();
|
||||||
self.id = new_id.to_string();
|
self.id = new_id.to_string();
|
||||||
self.data = data.to_vec();
|
self.data = data.to_vec();
|
||||||
|
|
|
@ -27,7 +27,7 @@ impl Window for GuiError {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl GuiError {
|
impl GuiError {
|
||||||
pub fn set_error_message<S: ToString>(&mut self, text: &S) {
|
pub fn set_error_message<S: ToString>(&mut self, text: S) {
|
||||||
self.text = text.to_string();
|
self.text = text.to_string();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user