Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
bertiqwerty committed Mar 28, 2024
1 parent b28d2ac commit 7082722
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ include = ["**/*.rs", "Cargo.toml"]

[dependencies]
csv = "1.2.2"
egui = "0.26.2"
egui = "0.27"
rand = { version = "0.8.5", default-features = false, features = ["std_rng"] }
rand_distr = { version = "0.4.3", default-features = false }
eframe = { version = "0.26.2", default-features = false, features = [
eframe = { version = "0.27", default-features = false, features = [
# "accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies.
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
Expand All @@ -44,7 +44,7 @@ js-sys = "0.3.64"
# wasm-bindgen-test = "0.3.33"
ehttp = "0.5.0"
serde_json = "1.0.105"
egui_plot = "0.26.2"
egui_plot = "0.27"
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion src/app/charts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ impl Charts {
);
}

if slider.drag_released() {
if slider.drag_stopped() {
recompute = true;
}

Expand Down
2 changes: 1 addition & 1 deletion src/app/month_slider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ impl MonthSlider {
self.possible_dates[idx.round() as usize].to_string()
}),
)
.drag_released();
.drag_stopped();
self.slider_state = SliderState::Some(tmp_idx);
changed
} else {
Expand Down

0 comments on commit 7082722

Please sign in to comment.