summaryrefslogtreecommitdiff
path: root/desktop/textarea.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-02-11 10:34:06 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2013-02-11 10:34:06 +0000
commit7af0614202bf89e3fae0fa06b65b74aa9bc580fc (patch)
tree7a799b8f66d231021aecf0820fcd77930a56e876 /desktop/textarea.c
parent99fc8d3f0dd0f9889ced412d3b855878f525907a (diff)
downloadnetsurf-7af0614202bf89e3fae0fa06b65b74aa9bc580fc.tar.gz
netsurf-7af0614202bf89e3fae0fa06b65b74aa9bc580fc.tar.bz2
Make delete line key enum value name less missleading. (Doesn't cut to clipboard.)
Diffstat (limited to 'desktop/textarea.c')
-rw-r--r--desktop/textarea.c3
1 files changed, 1 insertions, 2 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) {