Upgade lcg
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
Sarah Jamie Lewis 2022-01-12 14:41:17 -08:00
parent 4cdbb04243
commit 958be3e8f7
3 changed files with 14 additions and 12 deletions

View File

@ -1 +1 @@
2022-01-07-16-29-v1.5.4 2022-01-12-17-26-v1.5.4-3-gaf47036

View File

@ -1 +1 @@
2022-01-07-21-30-v1.5.4 2022-01-12-22-26-v1.5.4-3-gaf47036

View File

@ -133,16 +133,18 @@ class _TorStatusView extends State<TorStatusView> {
inactiveTrackColor: settings.theme.defaultButtonDisabledColor, inactiveTrackColor: settings.theme.defaultButtonDisabledColor,
secondary: Icon(CwtchIcons.enable_experiments, color: settings.current().mainTextColor), secondary: Icon(CwtchIcons.enable_experiments, color: settings.current().mainTextColor),
), ),
Visibility(visible: settings.useCustomTorConfig, child: Padding( Visibility(
padding: EdgeInsets.all(5), visible: settings.useCustomTorConfig,
child: CwtchTextField( child: Padding(
controller: torConfigController, padding: EdgeInsets.all(5),
multiLine: true, child: CwtchTextField(
onChanged: (torConfig) { controller: torConfigController,
settings.torConfig = torConfig; multiLine: true,
saveSettings(context); onChanged: (torConfig) {
}, settings.torConfig = torConfig;
))) saveSettings(context);
},
)))
])) ]))
])))); ]))));
}); });