-
I don't know if this is my requirement or a bug of eframe, I want my application window to cover all screens initially. On a single monitor it certainly works fine, but on multiple monitors it only seems to cover one screen at most, despite my large initial_window_size setting. The code used for testing is available here: https://github.com/tiny-anchor/screen_capture |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I just ran into the exactly same issue as you did. With some digging inside the |
Beta Was this translation helpful? Give feedback.
-
It could be that on Windows, it is seemingly impossible for a single window to be larger than a single monitor. You will probably have to use multiple windows. This is why multi-monitor mode is often a special case for games. |
Beta Was this translation helpful? Give feedback.
I just ran into the exactly same issue as you did. With some digging inside the
eframe
crate (window_builder and largest_monitor_point_size), I'd say that it was designed that way for some reason.