1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:17:35 +00:00

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

View file

@ -443,6 +443,7 @@ int main(int argc, char** argv)
editor->image().flip(Gfx::Orientation::Horizontal); editor->image().flip(Gfx::Orientation::Horizontal);
}, },
window)); window));
image_menu.add_separator();
image_menu.add_action(GUI::Action::create( image_menu.add_action(GUI::Action::create(
"Rotate &Left", [&](auto&) { "Rotate &Left", [&](auto&) {
auto* editor = current_image_editor(); auto* editor = current_image_editor();