PolyMeilex / rfd

Rusty File Dialog
MIT License
526 stars 60 forks source link

After updating to MacOS ventura scroll bar does not appear #142

Open dathinaios opened 10 months ago

dathinaios commented 10 months ago

I am using this simple function:

pub fn pop_up(title: &str, description: &str) {
    let title = title.to_string();
    let description = description.to_string();
    std::thread::spawn(move || {
        MessageDialog::new()
            .set_title(title.as_str())
            .set_level(MessageLevel::Info)
            .set_description(description.as_str())
            .set_buttons(rfd::MessageButtons::Ok)
            .show();
    });
}

When the text is too long the window just extends beyond the limit of the screen. It used to just have a scroll bar.