summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-08-20 09:10:04 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-08-20 09:10:04 +0300
commit91e83c498f94433146f61103f310f64088b0b066 (patch)
treec4c03e370de4ff1229d96432f0b97c1374798efa /src
parente9e496ffb64d83a55162d38ffc6d87a364bb6a95 (diff)
Cleanup
Diffstat (limited to 'src')
-rw-r--r--src/ui/inputwidget.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ui/inputwidget.c b/src/ui/inputwidget.c
index 2f0cabbb..e0272a5d 100644
--- a/src/ui/inputwidget.c
+++ b/src/ui/inputwidget.c
@@ -1091,7 +1091,6 @@ void setCursor_InputWidget(iInputWidget *d, iInt2 pos) {
1091 pos.x = iClamp(pos.x, 0, endX_InputWidget_(d, pos.y)); 1091 pos.x = iClamp(pos.x, 0, endX_InputWidget_(d, pos.y));
1092 d->cursor = pos; 1092 d->cursor = pos;
1093 iChar ch = at_InputWidget_(d, pos); 1093 iChar ch = at_InputWidget_(d, pos);
1094 printf("cursor x:%d ch:%08x (%lc)\n", pos.x, ch, (int)ch);
1095 /* Update selection. */ 1094 /* Update selection. */
1096 if (isMarking_()) { 1095 if (isMarking_()) {
1097 if (isEmpty_Range(&d->mark)) { 1096 if (isEmpty_Range(&d->mark)) {