Skip to content

Commit 9ac515b

Browse files
committed
Bind key "E" to edit register value
1 parent 205faea commit 9ac515b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/registerswidget.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ DebugRegistersWidget::DebugRegistersWidget(ViewFrame* view, BinaryViewRef data,
446446
m_actionHandler.bindAction(actionName, UIAction([=]() { setToZero(); }, [&]() { return selectionNotEmpty(); }));
447447

448448
actionName = QString::fromStdString("Edit Value");
449-
UIAction::registerAction(actionName, QKeySequence(Qt::Key_Enter));
449+
UIAction::registerAction(actionName, QKeySequence(Qt::Key_E));
450450
m_menu->addAction(actionName, "Options", MENU_ORDER_NORMAL);
451451
m_actionHandler.bindAction(actionName, UIAction([=]() { editValue(); }, [&]() { return selectionNotEmpty(); }));
452452

0 commit comments

Comments
 (0)