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); + }, + ))) ])) ])))); });