From 070fc9cb5e9c005a734d9227f663ee8349ba4c5b Mon Sep 17 00:00:00 2001 From: Baud Date: Sat, 1 Jun 2024 16:30:35 +0100 Subject: [PATCH] fix: Lets not jump about --- frontend/src/app.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/app.rs b/frontend/src/app.rs index 799662b..a20f33c 100644 --- a/frontend/src/app.rs +++ b/frontend/src/app.rs @@ -129,7 +129,8 @@ impl eframe::App for HyperdeckMonitorApp { status: hyperdeck.connection_state.into(), recording_status: hyperdeck.recording_status, slots: hyperdeck.slots, - }) + }); + self.hyperdecks.sort_by(|a, b| a.name.cmp(&b.name)); } } }