summaryrefslogtreecommitdiff
path: root/render/html_interaction.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/html_interaction.c')
-rw-r--r--render/html_interaction.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/render/html_interaction.c b/render/html_interaction.c
index 4d2234fe3..c2cca60e2 100644
--- a/render/html_interaction.c
+++ b/render/html_interaction.c
@@ -1048,19 +1048,19 @@ bool html_keypress(struct content *c, uint32_t key)
}
switch (key) {
- case KEY_COPY_SELECTION:
+ case NS_KEY_COPY_SELECTION:
selection_copy_to_clipboard(sel);
return true;
- case KEY_CLEAR_SELECTION:
+ case NS_KEY_CLEAR_SELECTION:
selection_clear(sel, true);
return true;
- case KEY_SELECT_ALL:
+ case NS_KEY_SELECT_ALL:
selection_select_all(sel);
return true;
- case KEY_ESCAPE:
+ case NS_KEY_ESCAPE:
if (selection_defined(sel)) {
selection_clear(sel, true);
return true;