Replies: 1 comment
-
it works on windows for me, but it doesn't seem possible to show again, ctx.send_viewport_cmd(egui::ViewportCommand::Visible(true)); is never consumed |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Updating my app to work with
0.25.0
and I noticed the removal of theon_close_event
(usingeframe
).I've tried calling
ctx.send_viewport_cmd(ViewportCommand::Visible(false));
which I assumed would be the equivalent offrame.set_visible(false);
but it doesn't seem to do anything.Similarly for converting from on_close to the new API this prevents the window from being closed but doesn't hide the window afterwards
What am I missing here?
Beta Was this translation helpful? Give feedback.
All reactions