From d645f637f1efc0732f262aefe1d6d6ce3fccee74 Mon Sep 17 00:00:00 2001 From: Mustafa Quraish Date: Fri, 3 Sep 2021 08:48:40 -0400 Subject: [PATCH] PixelPaint: Add separator in image menu I think it looks a bit nicer having a separator between the "flip" and "rotate" sections. --- Userland/Applications/PixelPaint/main.cpp | 1 + 1 file changed, 1 insertion(+) 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();