aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/sdtui.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sdtui.c b/src/sdtui.c
index f2bf15c..f14b920 100644
--- a/src/sdtui.c
+++ b/src/sdtui.c
@@ -1671,12 +1671,13 @@ app_process_left_mouse_click (Application *self, int line, int column)
; // At the moment there's nothing useful for us to do
else if (line == 1)
{
+ // FIXME: this is only an approximation
gsize label_len = g_utf8_strlen (self->search_label, -1);
gint pos = column - label_len;
if (pos >= 0)
{
self->input_pos = MIN ((guint) pos, self->input->len);
- move (0, label_len + self->input_pos);
+ move (1, label_len + self->input_pos);
refresh ();
}
}