1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Desktop: Fixed theme options for Solarized theme

This commit is contained in:
Laurent Cozic
2019-08-14 23:17:02 +02:00
parent 6548f30a4b
commit 5ac6b46efd
2 changed files with 3 additions and 3 deletions

View File

@ -217,7 +217,7 @@ class Setting extends BaseModel {
let output = {};
output[Setting.THEME_LIGHT] = _('Light');
output[Setting.THEME_DARK] = _('Dark');
if (platform === 'desktop') {
if (platform !== 'mobile') {
output[Setting.THEME_SOLARIZED_LIGHT] = _('Solarised Light');
output[Setting.THEME_SOLARIZED_DARK] = _('Solarised Dark');
}