Issues setting windows initial position #5102
Unanswered
UnknownSuperficialNight
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Using default_pos im setting
window 1
to top left aka.default_pos(egui::pos2(0.0, 0.0))
then setting thewindow 2
to top right.default_pos(egui::pos2(1280.0, 0.0))
But this is causing an issue where I can move window one wherever I want, but window 2 does not go to 1280.0 unless I also move the first displayed window to 1280. Any ideas what causes this?
I don't want to use fixed_pos; I just want the initial window to top right, etc., only for the first frame.
Here is a code sample
Beta Was this translation helpful? Give feedback.
All reactions