From 8a39596b6595233a8c27421f894d40c17a6c5d59 Mon Sep 17 00:00:00 2001 From: Michael Scoff Date: Thu, 21 Sep 2017 21:13:54 -0700 Subject: [PATCH] Set enableDeselection=false for RPC Server --- Trust/Settings/SettingsViewController.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Trust/Settings/SettingsViewController.swift b/Trust/Settings/SettingsViewController.swift index 56844f8f1..317039c7a 100644 --- a/Trust/Settings/SettingsViewController.swift +++ b/Trust/Settings/SettingsViewController.swift @@ -45,6 +45,8 @@ class SettingsViewController: FormViewController { $0.value = RPCServer(chainID: config.chainID).name }.onChange { row in self.config.chainID = RPCServer(name: row.value ?? "").chainID + }.onPresent { form, selectorController in + selectorController.enableDeselection = false } +++ Section()