From 2cd734c92bd8bdcdb3191d4f7761fd6e11d0b708 Mon Sep 17 00:00:00 2001 From: Kyle Machulis Date: Sat, 16 Mar 2024 16:02:33 -0700 Subject: [PATCH] chore: Change update link wording Makes a bit more sense on mobile --- lib/page/settings_page.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/page/settings_page.dart b/lib/page/settings_page.dart index 8dda030..d6ae42c 100644 --- a/lib/page/settings_page.dart +++ b/lib/page/settings_page.dart @@ -38,7 +38,9 @@ class SettingPage extends StatelessWidget { SettingsTile( title: TextButton( onPressed: !engineIsRunning ? () => BlocProvider.of(context).add(RunUpdate()) : null, - child: const Text("Check For Updates"))), + child: isDesktop() + ? const Text("Check For App and Config Updates") + : const Text("Check for Config Updates"))), SettingsTile(title: const Text("App Version"), value: Text(cubit.currentAppVersion)), ]; if (isDesktop() && canShowUpdate() && cubit.currentAppVersion != cubit.latestAppVersion) {