Put context parameter last in toggle_modal callback

This is more consistent with our treatment of context params everywhere else.
This commit is contained in:
Nathan Sobo 2022-05-10 16:46:53 -06:00
parent 6b5cab5db1
commit 9c68c3e8a9
8 changed files with 9 additions and 9 deletions

View file

@ -66,7 +66,7 @@ impl ThemeSelector {
fn toggle(workspace: &mut Workspace, _: &Toggle, cx: &mut ViewContext<Workspace>) {
let themes = workspace.themes();
workspace.toggle_modal(cx, |cx, _| {
workspace.toggle_modal(cx, |_, cx| {
let this = cx.add_view(|cx| Self::new(themes, cx));
cx.subscribe(&this, Self::on_event).detach();
this