Explorar o código

PixelPaint: Add separator in image menu

I think it looks a bit nicer having a separator between the
"flip" and "rotate" sections.
Mustafa Quraish %!s(int64=3) %!d(string=hai) anos
pai
achega
d645f637f1
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      Userland/Applications/PixelPaint/main.cpp

+ 1 - 0
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();