servoshell: upgrade egui and related depenencies (#35353)

Also fix build errors resulting from the use of the type
`egui::Rounding` which is now renamed to `egui::CornerRadius`.

Signed-off-by: Mukilan Thiyagarajan <mukilan@igalia.com>
This commit is contained in:
Mukilan Thiyagarajan 2025-02-07 11:39:08 +05:30 committed by GitHub
parent bbbff61840
commit 2ef12cf40f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 139 additions and 113 deletions

View file

@ -69,13 +69,13 @@ impl Dialog {
match state {
DialogState::Open => true,
DialogState::Selected(path) => {
DialogState::Picked(path) => {
if let Err(e) = dialog.response_sender.send(Some(vec![path])) {
warn!("Failed to send file selection response: {}", e);
}
false
},
DialogState::SelectedMultiple(paths) => {
DialogState::PickedMultiple(paths) => {
if let Err(e) = dialog.response_sender.send(Some(paths)) {
warn!("Failed to send file selection response: {}", e);
}