From 7926a4d4a679064336cc31d296822cba8342d8dc Mon Sep 17 00:00:00 2001 From: GT610 <79314033+GT-610@users.noreply.github.com> Date: Sat, 17 Jan 2026 21:15:05 +0800 Subject: [PATCH] fix(ssh page): Fix the issue with calculating the height of the virtual keyboard (#1011) --- lib/view/page/ssh/page/page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/view/page/ssh/page/page.dart b/lib/view/page/ssh/page/page.dart index 521e1607..bebe2f76 100644 --- a/lib/view/page/ssh/page/page.dart +++ b/lib/view/page/ssh/page/page.dart @@ -355,7 +355,7 @@ class SSHPageState extends ConsumerState onTapUp: (_) => _virtKeyLongPressTimer?.cancel(), child: SizedBox( width: virtKeyWidth, - height: _virtKeysHeight / _virtKeysList.length, + height: _horizonVirtKeys ? _virtKeysHeight : _virtKeysHeight / _virtKeysList.length, child: Center(child: child), ), );