Desktop: Fixed theme options for Solarized theme

pull/1802/head
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

@ -94,8 +94,8 @@ android {
applicationId "net.cozic.joplin"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 2097530
versionName "1.0.294"
versionCode 2097533
versionName "1.0.297"
ndk {
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}

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');
}