#46 SSH term fontSize

This commit is contained in:
lollipopkit
2023-05-25 15:21:57 +08:00
parent 472599498e
commit 29683572b9
13 changed files with 82 additions and 16 deletions

View File

@@ -2,8 +2,8 @@
class BuildData {
static const String name = "ServerBox";
static const int build = 313;
static const int build = 314;
static const String engine = "3.10.0";
static const String buildAt = "2023-05-16 17:56:08.999957";
static const int modifications = 6;
static const String buildAt = "2023-05-18 22:09:44.404990";
static const int modifications = 2;
}

View File

@@ -43,4 +43,8 @@ class SettingStore extends PersistentStore {
// Server order
StoreProperty<List<String>> get serverOrder =>
property('serverOrder', defaultValue: null);
// SSH term font size
StoreProperty<double> get termFontSize =>
property('termFontSize', defaultValue: 13);
}