diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2021-10-21 21:45:24 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-10-23 19:07:44 +0200 |
commit | d2690e551c39d3aa956b979d06c700c1c1826de3 (patch) | |
tree | b32456ac70367a1700da4d7e9b29ab80ef4da1da /Userland/Applications/TextEditor/MainWidget.h | |
parent | 6f71516409a151b58e64678c613fffd9ae8acdaf (diff) | |
download | serenity-d2690e551c39d3aa956b979d06c700c1c1826de3.zip |
TextEditor: Add syntax-highlighting for CSS files
Diffstat (limited to 'Userland/Applications/TextEditor/MainWidget.h')
-rw-r--r-- | Userland/Applications/TextEditor/MainWidget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/TextEditor/MainWidget.h b/Userland/Applications/TextEditor/MainWidget.h index 925dda707c..9292ca3ebd 100644 --- a/Userland/Applications/TextEditor/MainWidget.h +++ b/Userland/Applications/TextEditor/MainWidget.h @@ -116,6 +116,7 @@ private: GUI::ActionGroup syntax_actions; RefPtr<GUI::Action> m_plain_text_highlight; RefPtr<GUI::Action> m_cpp_highlight; + RefPtr<GUI::Action> m_css_highlight; RefPtr<GUI::Action> m_js_highlight; RefPtr<GUI::Action> m_html_highlight; RefPtr<GUI::Action> m_gml_highlight; |