PolyMeilex / rfd

Rusty File Dialog
MIT License
524 stars 60 forks source link

Linux message dialogues displaying "All updates are complete" #185

Open Speak2Erase opened 4 months ago

Speak2Erase commented 4 months ago

In my program, I'm creating a messagebox to display a backtrace from another language. This backtrace happens to contain "<top>" in it. Any messagebox description that contains the characters "`<" (in that order) is replaced with "All updates are complete."

Example:

    rfd::MessageDialog::new()
        .set_buttons(rfd::MessageButtons::Ok)
        .set_description("`<")
        .set_title("Sapphire")
        .show();

image