Skip to content

Commit

Permalink
ci: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
C0D3-M4513R committed Sep 25, 2023
1 parent 2a79ea6 commit 519c2b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
name = "dex_protect_osc_rs"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
4 changes: 2 additions & 2 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -412,15 +412,15 @@ fn get_id() -> u64 {

fn popup_creator<'a>(
title: impl Into<egui::WidgetText> + 'a,
add_content: impl Fn(&mut App, &mut egui::Ui) + 'a,
add_content: impl FnMut(&mut App, &mut egui::Ui) + 'a,
) -> Box<PopupFunc<'a>> {
popup_creator_collapsible(title, false, add_content)
}

fn popup_creator_collapsible<'a>(
title: impl Into<egui::WidgetText> + 'a,
collapsible: bool,
add_content: impl Fn(&mut App, &mut egui::Ui) + 'a,
mut add_content: impl FnMut(&mut App, &mut egui::Ui) + 'a,
) -> Box<PopupFunc<'a>> {
let title = title.into();
let id = get_id();
Expand Down

0 comments on commit 519c2b1

Please sign in to comment.