Add missing Arc
for on_click
handler
This commit is contained in:
parent
e34a488b55
commit
f5c76d93bc
1 changed files with 3 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
use std::sync::Arc;
|
||||||
|
|
||||||
use chrono::DateTime;
|
use chrono::DateTime;
|
||||||
use gpui3::{px, relative, view, Context, Size, View};
|
use gpui3::{px, relative, view, Context, Size, View};
|
||||||
|
|
||||||
|
@ -303,7 +305,7 @@ impl Workspace {
|
||||||
.child(
|
.child(
|
||||||
h_stack().gap_2().child(
|
h_stack().gap_2().child(
|
||||||
Button::<Workspace>::new("Toggle Debug")
|
Button::<Workspace>::new("Toggle Debug")
|
||||||
.on_click(|workspace, cx| workspace.toggle_debug(cx)),
|
.on_click(Arc::new(|workspace, cx| workspace.toggle_debug(cx))),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue