diff options
-rw-r--r-- | src/gui/npcdialog.cpp | 3 | ||||
-rw-r--r-- | src/keyboarddata.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/npcdialog.cpp b/src/gui/npcdialog.cpp index 39af0c71d..5e0e9d56f 100644 --- a/src/gui/npcdialog.cpp +++ b/src/gui/npcdialog.cpp @@ -94,6 +94,9 @@ NpcDialog::NpcDialog(int npcId) : // Setup listbox mItemList = new ListBox(this); mItemList->setWrappingEnabled(true); + mItemList->setActionEventId("ok"); + mItemList->addActionListener(this); + setContentSize(260, 175); mListScrollArea = new ScrollArea(mItemList); diff --git a/src/keyboarddata.h b/src/keyboarddata.h index 2fd4b7087..825da9e57 100644 --- a/src/keyboarddata.h +++ b/src/keyboarddata.h @@ -207,7 +207,6 @@ static KeyData const keyData[KeyboardConfig::KEY_TOTAL] = { {"keyQuit", SDLK_ESCAPE, N_("Quit"), KeyboardConfig::GRP_DEFAULT, -// nullptr, &ActionManager::quit, KeyboardConfig::KEY_NO_VALUE, 50, COND_DEFAULT}, |