From 949f6be694f6054aada8ebd5d5536644e6da1860 Mon Sep 17 00:00:00 2001 From: Observer KRypt0n_ Date: Thu, 15 Jun 2023 16:28:31 +0200 Subject: [PATCH] feat(ui): added unverified patch tooltip to the main button --- src/ui/main/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/main/mod.rs b/src/ui/main/mod.rs index f513095..731de75 100644 --- a/src/ui/main/mod.rs +++ b/src/ui/main/mod.rs @@ -442,6 +442,7 @@ impl SimpleComponent for App { set_tooltip_text: Some(&match &model.state { Some(LauncherState::GameOutdated { .. }) => tr("main-window--version-outdated-tooltip"), + Some(LauncherState::PatchNotVerified) => tr("patch-testing-tooltip"), Some(LauncherState::PatchBroken) => tr("patch-broken-tooltip"), Some(LauncherState::PatchUnsafe) => tr("patch-unsafe-tooltip"),