Restore click events on Button
s using on_mouse_down
This commit is contained in:
parent
6e5ad75c5c
commit
36bca4f0d6
1 changed files with 6 additions and 15 deletions
|
@ -1,7 +1,7 @@
|
||||||
use std::marker::PhantomData;
|
use std::marker::PhantomData;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
use gpui3::{DefiniteLength, Hsla, WindowContext};
|
use gpui3::{DefiniteLength, Hsla, Interactive, MouseButton, WindowContext};
|
||||||
|
|
||||||
use crate::prelude::*;
|
use crate::prelude::*;
|
||||||
use crate::{h_stack, theme, Icon, IconColor, IconElement, Label, LabelColor, LabelSize};
|
use crate::{h_stack, theme, Icon, IconColor, IconElement, Label, LabelColor, LabelSize};
|
||||||
|
@ -195,20 +195,11 @@ impl<S: 'static + Send + Sync + Clone> Button<S> {
|
||||||
el = el.w(width).justify_center();
|
el = el.w(width).justify_center();
|
||||||
}
|
}
|
||||||
|
|
||||||
// el.when_some(self.handlers.click.clone(), |el, click_handler| {
|
if let Some(click_handler) = self.handlers.click.clone() {
|
||||||
// el.id(0)
|
el = el.on_mouse_down(MouseButton::Left, move |state, event, cx| {
|
||||||
// .on_click(MouseButton::Left, move |state, event, cx| {
|
click_handler(state, cx);
|
||||||
// click_handler(state, cx);
|
});
|
||||||
// })
|
}
|
||||||
// });
|
|
||||||
|
|
||||||
// if let Some(click_handler) = self.handlers.click.clone() {
|
|
||||||
// el = el
|
|
||||||
// .id(0)
|
|
||||||
// .on_click(MouseButton::Left, move |state, event, cx| {
|
|
||||||
// click_handler(state, cx);
|
|
||||||
// });
|
|
||||||
// }
|
|
||||||
|
|
||||||
el
|
el
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue