PixelPaint: Add separator in image menu

I think it looks a bit nicer having a separator between the
"flip" and "rotate" sections.
This commit is contained in:
Mustafa Quraish 2021-09-03 08:48:40 -04:00 committed by Andreas Kling
parent 7263e57ce8
commit d645f637f1
Notes: sideshowbarker 2024-07-18 04:48:40 +09:00

View file

@ -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();