From 739a6a4a9c25ec1425b68833728f0dce7e0215e8 Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Wed, 24 Oct 2018 18:47:04 +0100 Subject: [PATCH] Documentation --- ReactNativeClient/lib/models/Setting.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactNativeClient/lib/models/Setting.js b/ReactNativeClient/lib/models/Setting.js index d8a20ac0e..3edd37f98 100644 --- a/ReactNativeClient/lib/models/Setting.js +++ b/ReactNativeClient/lib/models/Setting.js @@ -90,7 +90,7 @@ class Setting extends BaseModel { // Might be fixed in Electron 18.x but no non-beta release yet. So for now // by default we disable it on Linux. 'showTrayIcon': { value: platform !== 'linux', type: Setting.TYPE_BOOL, public: true, appTypes: ['desktop'], label: () => _('Show tray icon'), description: () => { - return platform === 'linux' ? _('Note: Does not work in all desktop environments.') : null; + return platform === 'linux' ? _('Note: Does not work in all desktop environments.') : _('This will allow Joplin to run in the background. It is recommended to enable this setting so that your notes are constantly being synchronised, thus reducing the number of conflicts.'); }}, 'startMinimized': { value: false, type: Setting.TYPE_BOOL, public: true, appTypes: ['desktop'], label: () => _('Start application minimised in the tray icon') },