1
0
Fork 0
forked from wry/wry

egui: upgrade to 0.34

This commit is contained in:
Julian Orth 2026-03-30 13:24:57 +02:00
parent 915c93336a
commit da2d00f404
11 changed files with 351 additions and 218 deletions

View file

@ -34,7 +34,7 @@ impl CompositorPane {
row(ui, "Repository", |ui| {
let url = "https://github.com/mahkoh/jay";
if ui.link(url).clicked() {
ui.ctx().open_url(OpenUrl::new_tab(url));
ui.open_url(OpenUrl::new_tab(url));
}
});
label(ui, "Version", VERSION);
@ -66,7 +66,7 @@ impl CompositorPane {
.on_hover_text_at_pointer("Copy to clipboard")
.clicked()
{
ui.ctx().copy_text(path);
ui.copy_text(path);
}
});
}