Skip to content

Commit

Permalink
Fix clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Refragg committed Sep 22, 2023
1 parent bab1476 commit 1747a84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ struct Settings {
#[derive(Deserialize)]
struct ObsEditableListEntry {
value: String,
selected: bool,
hidden: bool,
_selected: bool,
_hidden: bool,
}

fn parse_run(path: &Path) -> Option<(Run, bool)> {
Expand Down Expand Up @@ -891,7 +891,7 @@ unsafe extern "C" fn settings_list_modified(
}
}

return true;
true
} else {
reset_auto_splitter_setting_ui!();
}
Expand Down

0 comments on commit 1747a84

Please sign in to comment.