Skip to content

Commit

Permalink
Fix remove hotkey not work bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackINT3 committed Sep 6, 2020
1 parent e3f5478 commit 7c3121c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OpenArk/kernel/kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ void Kernel::InitHotkeyView()
hotkey_menu_->addAction(tr("Refresh"), this, [&] { ShowSystemHotkey(); });
hotkey_menu_->addSeparator();
hotkey_menu_->addAction(tr("Delete Hotkey"), this, [&] {
ULONG32 vkid = QHexToDWord(HotkeyItemData(3));
ULONG32 vkid = QHexToDWord(HotkeyItemData(4));
auto arr = HotkeyItemData(1).split(".");
ULONG32 pid = QDecToDWord(arr[0]);
ULONG32 tid = QDecToDWord(arr[1]);
Expand Down

0 comments on commit 7c3121c

Please sign in to comment.