summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorMustafa Quraish <mustafaq9@gmail.com>2021-09-03 08:48:40 -0400
committerAndreas Kling <kling@serenityos.org>2021-09-04 03:30:03 +0200
commitd645f637f1efc0732f262aefe1d6d6ce3fccee74 (patch)
treee75100d4cd901082de0740a1b434df412107da7e /Userland
parent7263e57ce882e2011710c0e6ca6aca216ed1ab93 (diff)
downloadserenity-d645f637f1efc0732f262aefe1d6d6ce3fccee74.zip
PixelPaint: Add separator in image menu
I think it looks a bit nicer having a separator between the "flip" and "rotate" sections.
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Applications/PixelPaint/main.cpp1
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();