Replies: 6 comments 12 replies
-
Hey! How is that affecting your app? The window will get visible in L108, so what's the issue? |
Beta Was this translation helpful? Give feedback.
-
That code was introduced as a workaround for a bug in accesskit, that bug seems like already got fixed a while ago, I tested it myself and it doesn't seem to happen anymore. So I just opened #930 to remove those lines |
Beta Was this translation helpful? Give feedback.
-
I am not very sold on the idea of reexporting winit window APIs. Ideally, |
Beta Was this translation helpful? Give feedback.
-
Thanks! I have another request, especially for windows platform, I would like to enable non-main thread to run Eventloop, the application scenario is to wake up the UI interface normally when my application injected into another process via remote thread! |
Beta Was this translation helpful? Give feedback.
-
FYI @gqf2008 I had to revert the removal of the code, but, I added a with_visible method for the launch config. #935 |
Beta Was this translation helpful? Give feedback.
-
Thanks for sponsoring me @gqf2008 ! I appreciate it. |
Beta Was this translation helpful? Give feedback.
-
Delete lines 78 and 108 from freya/crates/renderer/src
/window_state.rs in lines 78 and 108, which has the advantage of not affecting existing functionality and leaving it up to the user to control whether or not the window is displayed, for example the following code
By the way, it would be a good idea to export winit::platform::macos::* and winit::platform::windows::* again, so that the user can have more control over the display of the window
Beta Was this translation helpful? Give feedback.
All reactions