Fix fallthough in CodeView/MemoryView widgets

This slightly changes the behaviour, but I think this is more correct.
This commit is contained in:
Scott Mansell
2026-08-07 19:31:36 +12:00
parent 7de31b291e
commit a6cf98332b
2 changed files with 4 additions and 0 deletions

View File

@@ -126,7 +126,9 @@ public:
if (event->modifiers() == Qt::ControlModifier)
{
m_view->TriggerActivateSearch();
return;
}
[[fallthrough]];
default:
QWidget::keyPressEvent(event);
return;