Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
dathinaios opened this issue Sep 5, 2023 · 0 comments
Open

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

dathinaios opened this issue Sep 5, 2023 · 0 comments

Comments

@dathinaios
Copy link

dathinaios commented Sep 5, 2023

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant