linebender / druid

A data-first Rust-native UI design toolkit.
https://linebender.org/druid/
Apache License 2.0
9.44k stars 569 forks source link

Dual monitor App invisible #2394

Open ErikSom opened 5 months ago

ErikSom commented 5 months ago

When running my window with the following settings:

    let main_window = WindowDesc::new(build_ui())
        .title("Keyboard Event Viewer")
        .transparent(true)
        .show_titlebar(false)
        .window_size((500.0, 160.0));

It will not show up on a dual monitor on MacOS 14.1.2. It will simply be invisible.

The culprit is .show_titlebar(false) when I comment it out the app will show.