aboutsummaryrefslogtreecommitdiff
path: root/src/sc_editor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sc_editor.c')
-rw-r--r--src/sc_editor.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/sc_editor.c b/src/sc_editor.c
index 897bdad..e087b55 100644
--- a/src/sc_editor.c
+++ b/src/sc_editor.c
@@ -374,6 +374,17 @@ void sc_editor_set_background(SCEditor *e, double r, double g, double b)
}
+void sc_editor_ensure_cursor(SCEditor *e)
+{
+ if ( e->cursor_frame != NULL ) return;
+ e->cursor_frame = e->top;
+ e->cpos.para = 0;
+ e->cpos.pos = 0;
+ e->cpos.trail = 0;
+ e->selection = NULL;
+}
+
+
void sc_editor_remove_cursor(SCEditor *e)
{
e->cursor_frame = NULL;