bug: color seed setting not working (#516)

This commit is contained in:
lollipopkit🏳️‍⚧️
2024-08-03 23:17:18 +08:00
committed by GitHub
parent 9db04a60c2
commit ea7c8caf14
11 changed files with 32 additions and 31 deletions

View File

@@ -73,15 +73,10 @@ class _SSHTabPageState extends State<SSHTabPage>
return AlertDialog(
title: Text(libL10n.attention),
content: Text('${libL10n.close} SSH ${l10n.conn}($name) ?'),
actions: [
Btn.ok(
onTap: (c) => context.pop(true),
red: true,
),
Btn.cancel(
onTap: (c) => context.pop(false),
),
],
actions: Btn.ok(
onTap: (c) => context.pop(true),
red: true,
).toList,
);
},
);