Skip to content
This repository has been archived by the owner on Apr 1, 2023. It is now read-only.

Fix for for various UI elements being incorrectly styled. #609

Open
jonathan-annett opened this issue Jun 1, 2021 · 0 comments
Open

Fix for for various UI elements being incorrectly styled. #609

jonathan-annett opened this issue Jun 1, 2021 · 0 comments

Comments

@jonathan-annett
Copy link

jonathan-annett commented Jun 1, 2021

Issue:

Various UI elements are incorrectly styled

Reason

theme.js incorrectly references config.getTheme instead of config.getEditorTheme

Solution

change /app/js/theme.js line 85 - currently

            var theme = config.getTheme(config.getPreference("editorTheme"));

change to

            var theme = config.getEditorTheme(config.getPreference("editorTheme"));

change /app/js/theme.js line 113 - currently

            var theme = config.getTheme(config.getPreference("windowTheme"));

change to

            var theme = config.getEditorTheme(config.getPreference("windowTheme"));
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant