summaryrefslogtreecommitdiffstats
path: root/source/view.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-05-22 19:41:52 +0200
committerDave Davenport <qball@gmpclient.org>2016-05-22 19:41:52 +0200
commit99a79f7eb4e87cddbeb896501cb915a8a52fd505 (patch)
tree4447149837a6c6ab52f149de225799e528dd99a9 /source/view.c
parent498fadc735df509ef0a864db1e93d2120d8eb9ee (diff)
Don't use g_ascii on utf8 string.
Diffstat (limited to 'source/view.c')
-rw-r--r--source/view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/view.c b/source/view.c
index 1114c923..8473d859 100644
--- a/source/view.c
+++ b/source/view.c
@@ -1535,7 +1535,7 @@ static void rofi_view_handle_keypress ( RofiViewState *state, xkb_stuff *xkb, xc
}
}
- if ( ( len > 0 ) && ( textbox_append ( state->text, pad, len ) ) ) {
+ if ( ( len > 0 ) && ( textbox_append_char ( state->text, pad, len ) ) ) {
state->refilter = TRUE;
state->update = TRUE;
return;