diff options
author | thankyouverycool <n/a> | 2021-02-12 12:34:04 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-13 11:01:59 +0100 |
commit | 5a03b326a79042b1672e2546ca15d457edbf38c2 (patch) | |
tree | d63a112aa11d9c8e6c424813770073fda6f51339 /Userland/Applications/TextEditor/TextEditorWindow.gml | |
parent | c877612211e3eada3cedd489a088c04440b6c459 (diff) | |
download | serenity-5a03b326a79042b1672e2546ca15d457edbf38c2.zip |
TextEditor: Add layout options to View menu
Toolbar, status bar, and ruler can now be toggled on/off and their
settings are saved in ~/.config/TextEditor.ini
Diffstat (limited to 'Userland/Applications/TextEditor/TextEditorWindow.gml')
-rw-r--r-- | Userland/Applications/TextEditor/TextEditorWindow.gml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Applications/TextEditor/TextEditorWindow.gml b/Userland/Applications/TextEditor/TextEditorWindow.gml index 433d01abff..ad02320c50 100644 --- a/Userland/Applications/TextEditor/TextEditorWindow.gml +++ b/Userland/Applications/TextEditor/TextEditorWindow.gml @@ -7,6 +7,8 @@ } @GUI::ToolBarContainer { + name: "toolbar_container" + @GUI::ToolBar { name: "toolbar" } |