diff --git a/src/renderer/pages/preferences-page.js b/src/renderer/pages/preferences-page.js index 05c2ecfe..76097109 100644 --- a/src/renderer/pages/preferences-page.js +++ b/src/renderer/pages/preferences-page.js @@ -114,7 +114,7 @@ class PreferencesPage extends React.Component { { this.handleAutoAddTorrentsChange(e, value) }} /> @@ -142,20 +142,16 @@ class PreferencesPage extends React.Component { torrentsFolderPathSelector () { const torrentsFolderPath = this.props.state.unsaved.prefs.torrentsFolderPath - const value = torrentsFolderPath || 'Path to be watched.' - const description = 'Torrent files saved to this folder will be automatically added.' - return ( -

{description}

) @@ -220,8 +216,10 @@ class PreferencesPage extends React.Component { } return (
- + {this.downloadPathSelector()} + {this.autoAddTorrentsCheckbox()} + {this.torrentsFolderPathSelector()} {this.openExternalPlayerCheckbox()} @@ -231,10 +229,6 @@ class PreferencesPage extends React.Component { {this.setDefaultAppButton()} - - {this.autoAddTorrentsCheckbox()} - {this.torrentsFolderPathSelector()} - {this.setStartupSection()}
)