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

@@ -159,9 +159,11 @@ class _ProcessPageState extends State<ProcessPage> {
'${l10n.stop} ${l10n.process}(${proc.pid})',
)),
actions: Btn.ok(onTap: (c) async {
await _client?.run('kill ${proc.pid}');
await _refresh();
context.pop();
await context.showLoadingDialog(fn: () async {
await _client?.run('kill ${proc.pid}');
await _refresh();
});
}).toList,
);
},