After updating to MacOS ventura scroll bar does not appear
Open
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
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- 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