We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9c4d3d commit 3da00e1Copy full SHA for 3da00e1
crates/fig_desktop/src/local_ipc/commands.rs
@@ -220,7 +220,6 @@ pub async fn login(proxy: &EventLoopProxy) -> LocalResult {
220
dry_run: false,
221
},
222
WindowEvent::Reload,
223
- WindowEvent::Show,
224
]),
225
})
226
.map_err(|err| error!(?err))
@@ -240,7 +239,7 @@ pub async fn logout(proxy: &EventLoopProxy) -> LocalResult {
240
239
proxy
241
.send_event(Event::WindowEvent {
242
window_id: DASHBOARD_ID,
243
- window_event: WindowEvent::Batch(vec![WindowEvent::Reload, WindowEvent::Show]),
+ window_event: WindowEvent::Reload,
244
245
246
.ok();
0 commit comments