diff options
author | Mustafa Quraish <mustafaq9@gmail.com> | 2021-09-03 08:48:40 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-04 03:30:03 +0200 |
commit | d645f637f1efc0732f262aefe1d6d6ce3fccee74 (patch) | |
tree | e75100d4cd901082de0740a1b434df412107da7e | |
parent | 7263e57ce882e2011710c0e6ca6aca216ed1ab93 (diff) | |
download | serenity-d645f637f1efc0732f262aefe1d6d6ce3fccee74.zip |
PixelPaint: Add separator in image menu
I think it looks a bit nicer having a separator between the
"flip" and "rotate" sections.
-rw-r--r-- | Userland/Applications/PixelPaint/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/PixelPaint/main.cpp b/Userland/Applications/PixelPaint/main.cpp index bb679824a8..aba8f8b065 100644 --- a/Userland/Applications/PixelPaint/main.cpp +++ b/Userland/Applications/PixelPaint/main.cpp @@ -443,6 +443,7 @@ int main(int argc, char** argv) editor->image().flip(Gfx::Orientation::Horizontal); }, window)); + image_menu.add_separator(); image_menu.add_action(GUI::Action::create( "Rotate &Left", [&](auto&) { auto* editor = current_image_editor(); |