servoshell: Migrate to egui-file-dialog from tinyfiledialogs (#34823)

This is the first step toward completely replacing tinyfiledialogs with
an egui-based solution.

Signed-off-by: L Ashwin B <lashwinib@gmail.com>
This commit is contained in:
chickenleaf 2025-02-04 23:54:24 +05:30 committed by GitHub
parent e41b34a1bf
commit 62f1dbebff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 261 additions and 70 deletions

View file

@ -391,6 +391,10 @@ impl Minibrowser {
return;
};
egui::CentralPanel::default().show(ctx, |_| {
webview.update(ctx);
});
CentralPanel::default()
.frame(Frame::none())
.show(ctx, |ui| {