From 958be3e8f7f12f41b6949197bd13431d15614738 Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Wed, 12 Jan 2022 14:41:17 -0800 Subject: [PATCH] Upgade lcg --- LIBCWTCH-GO-MACOS.version | 2 +- LIBCWTCH-GO.version | 2 +- lib/views/torstatusview.dart | 22 ++++++++++++---------- 3 files changed, 14 insertions(+), 12 deletions(-) diff --git a/LIBCWTCH-GO-MACOS.version b/LIBCWTCH-GO-MACOS.version index 5953cbf1..270b0601 100644 --- a/LIBCWTCH-GO-MACOS.version +++ b/LIBCWTCH-GO-MACOS.version @@ -1 +1 @@ -2022-01-07-16-29-v1.5.4 \ No newline at end of file +2022-01-12-17-26-v1.5.4-3-gaf47036 \ No newline at end of file diff --git a/LIBCWTCH-GO.version b/LIBCWTCH-GO.version index c356452f..68121b4a 100644 --- a/LIBCWTCH-GO.version +++ b/LIBCWTCH-GO.version @@ -1 +1 @@ -2022-01-07-21-30-v1.5.4 \ No newline at end of file +2022-01-12-22-26-v1.5.4-3-gaf47036 \ No newline at end of file diff --git a/lib/views/torstatusview.dart b/lib/views/torstatusview.dart index 3ec5e2bc..c94a8a42 100644 --- a/lib/views/torstatusview.dart +++ b/lib/views/torstatusview.dart @@ -133,16 +133,18 @@ class _TorStatusView extends State { inactiveTrackColor: settings.theme.defaultButtonDisabledColor, secondary: Icon(CwtchIcons.enable_experiments, color: settings.current().mainTextColor), ), - Visibility(visible: settings.useCustomTorConfig, child: Padding( - padding: EdgeInsets.all(5), - child: CwtchTextField( - controller: torConfigController, - multiLine: true, - onChanged: (torConfig) { - settings.torConfig = torConfig; - saveSettings(context); - }, - ))) + Visibility( + visible: settings.useCustomTorConfig, + child: Padding( + padding: EdgeInsets.all(5), + child: CwtchTextField( + controller: torConfigController, + multiLine: true, + onChanged: (torConfig) { + settings.torConfig = torConfig; + saveSettings(context); + }, + ))) ])) ])))); });