From d2bb6a7114292da8e3bb97f6506612b8136799f0 Mon Sep 17 00:00:00 2001 From: Jonas Wagner Date: Sun, 21 Apr 2024 19:35:49 +0200 Subject: [PATCH] Fix link to eframe (#130) The name of the primary branch in the upstream Repo is master not main. This PR fixes the link. Alternatively the name of the primary branch could just be changed to main as well. --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index 24bbc622..821db491 100644 --- a/src/app.rs +++ b/src/app.rs @@ -102,7 +102,7 @@ fn powered_by_egui_and_eframe(ui: &mut egui::Ui) { ui.label(" and "); ui.hyperlink_to( "eframe", - "https://github.com/emilk/egui/tree/main/crates/eframe", + "https://github.com/emilk/egui/tree/master/crates/eframe", ); ui.label("."); });