1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:28:12 +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);
},
window));
image_menu.add_separator();
image_menu.add_action(GUI::Action::create(
"Rotate &Left", [&](auto&) {
auto* editor = current_image_editor();