opt ui of Windows session dialog (#13303)

Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
21pages
2025-10-27 16:51:30 +08:00
committed by GitHub
parent e66d2facd4
commit 3242d132f6

View File

@@ -2121,8 +2121,10 @@ void showWindowsSessionsDialog(
return CustomAlertDialog(
title: null,
content: msgboxContent(type, title, text),
actions: [
content: Column(
mainAxisSize: MainAxisSize.min,
children: [
msgboxContent(type, title, text).marginOnly(bottom: 12),
ComboBox(
keys: sids,
values: names,
@@ -2130,6 +2132,9 @@ void showWindowsSessionsDialog(
onChanged: (value) {
selectedUserValue = value;
}),
],
),
actions: [
dialogButton('Connect', onPressed: submit, isOutline: false),
],
);