diff options
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/packages/desktop/src/renderer/components/Preferences.js | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/gui/packages/desktop/src/renderer/components/Preferences.js b/gui/packages/desktop/src/renderer/components/Preferences.js index 53ed912798..19ae96f338 100644 --- a/gui/packages/desktop/src/renderer/components/Preferences.js +++ b/gui/packages/desktop/src/renderer/components/Preferences.js @@ -64,20 +64,16 @@ export default class Preferences extends Component<PreferencesProps, State> { <View style={styles.preferences__content}> <Cell.Container> - <Cell.Label>Auto-connect</Cell.Label> - <Switch isOn={this.props.autoConnect} onChange={this.props.setAutoConnect} /> + <Cell.Label>Launch app on start-up</Cell.Label> + <Switch isOn={this.state.autoStart} onChange={this._onChangeAutoStart} /> </Cell.Container> - <Cell.Footer> - Automatically connect to the VPN at the earliest moment during computer - boot-up. - </Cell.Footer> <Cell.Container> - <Cell.Label>Auto-launch</Cell.Label> - <Switch isOn={this.state.autoStart} onChange={this._onChangeAutoStart} /> + <Cell.Label>Auto-connect</Cell.Label> + <Switch isOn={this.props.autoConnect} onChange={this.props.setAutoConnect} /> </Cell.Container> <Cell.Footer> - Automatically launch the app when logging in to the computer. + Automatically connect to a server when the app launches. </Cell.Footer> <Cell.Container> |
