We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1a79e2 commit 50f908dCopy full SHA for 50f908d
src/pages/themeSetting/themeSetting.js
@@ -193,7 +193,10 @@ console.log(message);`);
193
* @param {string} param0.theme
194
*/
195
function setEditorTheme({ caption, theme }) {
196
- editorManager.editor.setTheme(theme); // main editor
+ if (appSettings.value.appTheme.toLowerCase() === "system") {
197
+ alert("App theme is set to 'System'. Changing the editor theme will not affect the editor appearance.");
198
+ }
199
+ editorManager.editor.setTheme(theme);
200
editor.setTheme(theme); // preview
201
appSettings.update(
202
{
0 commit comments