summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'desktop')
-rw-r--r--desktop/textarea.c3
-rw-r--r--desktop/textinput.h2
2 files changed, 2 insertions, 3 deletions
diff --git a/desktop/textarea.c b/desktop/textarea.c
index 9dd3ace2d..9c3243293 100644
--- a/desktop/textarea.c
+++ b/desktop/textarea.c
@@ -1757,8 +1757,7 @@ bool textarea_keypress(struct textarea *ta, uint32_t key)
}
redraw = true;
break;
- case KEY_CUT_LINE:
- /* Not actually CUT to clipboard, just delete */
+ case KEY_DELETE_LINE:
if (readonly)
break;
if (ta->sel_start != -1) {
diff --git a/desktop/textinput.h b/desktop/textinput.h
index 745addeb6..e0581b23a 100644
--- a/desktop/textinput.h
+++ b/desktop/textinput.h
@@ -38,7 +38,7 @@ enum input_key {
KEY_SHIFT_TAB = 11,
KEY_CR = 13,
- KEY_CUT_LINE = 21,
+ KEY_DELETE_LINE = 21,
KEY_PASTE = 22,
KEY_CUT_SELECTION = 24,
KEY_CLEAR_SELECTION = 26,