mirror of https://github.com/laurent22/joplin.git
Desktop: Fixed theme options for Solarized theme
parent
6548f30a4b
commit
5ac6b46efd
|
@ -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"
|
||||
}
|
||||
|
|
|
@ -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');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue