Skip to content

Commit 247ac25

Browse files
Update param_slider.rs
1 parent b3bf24a commit 247ac25

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

nih_plug_iced/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ svg = ["iced_baseview/svg"]
3434
canvas = ["iced_baseview/canvas"]
3535

3636
[dependencies]
37-
nih_plug = { path = "..", default-features = false }
37+
nih_plug = { path = "..", default_features = false }
3838
nih_plug_assets = { git = "https://github.com/robbert-vdh/nih_plug_assets.git" }
3939

4040
# The currently targeted version of baseview uses a different version of
@@ -44,7 +44,7 @@ raw-window-handle = "0.5"
4444
atomic_refcell = "0.1"
4545
baseview = { git = "https://github.com/RustAudio/baseview.git", rev = "579130ecb4f9f315ae52190af42f0ea46aeaa4a2" }
4646
crossbeam = "0.8"
47-
# This targets iced 0.10
47+
# This targets iced 0.13
4848
iced_baseview = { git = "https://github.com/BillyDM/iced_baseview.git", rev = "a0842a8205c852127981e27de6342cf2e665562f", default_features = false }
4949
futures-util = "0.3"
5050

nih_plug_iced/src/widgets/param_slider.rs

-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use nih_plug::nih_log;
21
use nih_plug::prelude::Param;
32
use std::borrow::Borrow;
43

@@ -152,8 +151,6 @@ impl<'a, P: Param> ParamSlider<'a, P> {
152151
})
153152
.min_width();
154153

155-
nih_log!("with_text_input() - {} {}", current_value, text_width);
156-
157154
let text_input = text_input("", current_value)
158155
.id(state.text_input_id.clone())
159156
.font(font)

0 commit comments

Comments
 (0)