PolyMeilex / PolyMeilex/rfd

After updating to MacOS ventura scroll bar does not appear

Open
#142 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Rust
Stars
830
Forks
108
Avg merge
6d 33m
Merged PRs (30d)
2

Description

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.

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by reproducing the issue on macOS Ventura using the pop_up function and its MessageDialog configuration. Inspect the dialog implementation responsible for long descriptions and verify that a long message stays within the screen and provides a scrollbar, matching the former behavior.

Written by the indexing model from the issue text.

Assessment

Tech stack
rust
Domain
desktop
Issue type
Bug
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.