Release: 2.13.0 58

This commit is contained in:
2024-11-03 18:33:47 +08:00
parent 8a58719908
commit 8d07af2253
3 changed files with 6 additions and 6 deletions

View File

@ -69,7 +69,7 @@ class SettingsUIModel extends _$SettingsUIModel {
}
Future<void> setLauncherPath(BuildContext context) async {
await showToast(context, "${S.current.setting_toast_select_launcher_exe}");
await showToast(context, S.current.setting_toast_select_launcher_exe);
final r = await FilePicker.platform.pickFiles(
dialogTitle: S.current.setting_action_info_select_rsi_launcher_location,
type: FileType.custom,
@ -90,7 +90,7 @@ class SettingsUIModel extends _$SettingsUIModel {
}
Future<void> setGamePath(BuildContext context) async {
await showToast(context, "${S.current.setting_toast_select_game_file}");
await showToast(context, S.current.setting_toast_select_game_file);
final r = await FilePicker.platform.pickFiles(
dialogTitle: S.current.setting_action_info_select_game_install_location,
type: FileType.custom,