Skip to content

Commit

Permalink
Fix a bug where edit_link command incorrectly didn't push the state t…
Browse files Browse the repository at this point in the history
…o history
  • Loading branch information
ahrm committed Aug 20, 2022
1 parent c8d282e commit 29848b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdf_viewer/input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ CommandManager::CommandManager() {
commands.push_back({ "delete_highlight", false, false, false, false, true, {}});
commands.push_back({ "goto_link", false, false, false, true, true, {}});
commands.push_back({ "goto_portal", false, false, false, true, true, {}});
commands.push_back({ "edit_link", false, false, false, false, true, {}});
commands.push_back({ "edit_link", false, false, false, true, true, {}});
commands.push_back({ "edit_portal", false, false, false, true, true, {}});
commands.push_back({ "open_prev_doc", false, false, false, true, false, {}});
commands.push_back({ "open_document_embedded", false, false, false, true, false, {}});
Expand Down

0 comments on commit 29848b7

Please sign in to comment.