HackStudio: Allow moving the selected widgets using the arrow keys

This is a nice complement to moving widgets with the mouse. :^)
This commit is contained in:
Andreas Kling 2019-11-10 22:40:58 +01:00
commit c8637e0206
Notes: sideshowbarker 2024-07-19 11:16:36 +09:00
7 changed files with 47 additions and 0 deletions

View file

@ -18,3 +18,9 @@ void WidgetTool::on_mousemove(GMouseEvent& event)
(void)event;
dbg() << "WidgetTool::on_mousemove";
}
void WidgetTool::on_keydown(GKeyEvent& event)
{
(void)event;
dbg() << "WidgetTool::on_keydown";
}