Change summary
crates/ui2/src/components/icon_button.rs | 6 +++---
crates/ui2/src/elements/button.rs | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
Detailed changes
@@ -80,9 +80,9 @@ impl<S: 'static + Send + Sync> IconButton<S> {
}
if let Some(click_handler) = self.handlers.click.clone() {
- div = div.on_click(MouseButton::Left, move |state, event, cx| {
- click_handler(state, cx);
- });
+ // div = div.on_click(MouseButton::Left, move |state, event, cx| {
+ // click_handler(state, cx);
+ // });
}
div.w_7()
@@ -196,9 +196,9 @@ impl<S: 'static + Send + Sync + Clone> Button<S> {
}
if let Some(click_handler) = self.handlers.click.clone() {
- el = el.on_click(MouseButton::Left, move |state, event, cx| {
- click_handler(state, cx);
- });
+ // el = el.on_click(MouseButton::Left, move |state, event, cx| {
+ // click_handler(state, cx);
+ // });
}
el