瀏覽代碼

PixelPaint: Add separator in image menu

I think it looks a bit nicer having a separator between the
"flip" and "rotate" sections.
Mustafa Quraish 3 年之前
父節點
當前提交
d645f637f1
共有 1 個文件被更改,包括 1 次插入0 次删除
  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();