Consome scrolling events
This sort of fixes using these in ScrollViews
This commit is contained in:
parent
316d9221df
commit
e184e6d8a6
|
@ -104,6 +104,8 @@ impl View for ParamButton {
|
|||
|
||||
self.param_base.end_set_parameter(cx);
|
||||
}
|
||||
|
||||
meta.consume();
|
||||
}
|
||||
_ => {}
|
||||
});
|
||||
|
|
|
@ -585,6 +585,8 @@ impl View for ParamSlider {
|
|||
self.param_base.end_set_parameter(cx);
|
||||
}
|
||||
}
|
||||
|
||||
meta.consume();
|
||||
}
|
||||
_ => {}
|
||||
});
|
||||
|
|
|
@ -80,6 +80,8 @@ impl<L: Lens<Target = Arc<AtomicBool>>> View for SafeModeButton<L> {
|
|||
self.scrolled_lines += 1.0;
|
||||
}
|
||||
}
|
||||
|
||||
meta.consume();
|
||||
}
|
||||
_ => {}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue