mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:27:44 +00:00
FontEditor: Change flip action shortcuts to Ctrl+Shift+{Q,W}
To not interfere with the command palette.
This commit is contained in:
parent
cdd1bc64f6
commit
42284a1550
1 changed files with 2 additions and 2 deletions
|
@ -318,11 +318,11 @@ FontEditorWidget::FontEditorWidget()
|
||||||
m_glyph_editor_widget->rotate_90(GlyphEditorWidget::Clockwise);
|
m_glyph_editor_widget->rotate_90(GlyphEditorWidget::Clockwise);
|
||||||
});
|
});
|
||||||
|
|
||||||
m_flip_horizontal_action = GUI::Action::create("Flip Horizontally", { Mod_Ctrl | Mod_Shift, Key_A }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/edit-flip-horizontal.png").release_value_but_fixme_should_propagate_errors(), [&](auto&) {
|
m_flip_horizontal_action = GUI::Action::create("Flip Horizontally", { Mod_Ctrl | Mod_Shift, Key_Q }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/edit-flip-horizontal.png").release_value_but_fixme_should_propagate_errors(), [&](auto&) {
|
||||||
m_glyph_editor_widget->flip_horizontally();
|
m_glyph_editor_widget->flip_horizontally();
|
||||||
});
|
});
|
||||||
|
|
||||||
m_flip_vertical_action = GUI::Action::create("Flip Vertically", { Mod_Ctrl | Mod_Shift, Key_S }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/edit-flip-vertical.png").release_value_but_fixme_should_propagate_errors(), [&](auto&) {
|
m_flip_vertical_action = GUI::Action::create("Flip Vertically", { Mod_Ctrl | Mod_Shift, Key_W }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/edit-flip-vertical.png").release_value_but_fixme_should_propagate_errors(), [&](auto&) {
|
||||||
m_glyph_editor_widget->flip_vertically();
|
m_glyph_editor_widget->flip_vertically();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue