elm_code: Fix selection,start signal

@fix
This commit is contained in:
Andy Williams 2017-04-21 18:23:05 +01:00
parent 7ee68cb4e2
commit e99bfd7e7d
2 changed files with 2 additions and 1 deletions

View File

@ -307,6 +307,7 @@ class Elm.Code_Widget (Elm.Layout, Elm.Interface.Atspi.Text)
line,gutter,clicked; [[Called when gutter was clicked]]
cursor,changed; [[Called when cursor changed]]
changed,user; [[Called when object changed due to user interaction]]
selection,start; [[Called when a selection is started]]
selection,changed; [[Called when selection changed]]
selection,cleared; [[Called when selection was cleared]]
}

View File

@ -60,7 +60,7 @@ elm_code_widget_selection_start(Evas_Object *widget,
pd->selection->start_line = line;
pd->selection->start_col = col;
efl_event_callback_legacy_call(widget, ELM_OBJ_CODE_WIDGET_EVENT_SELECTION_CHANGED, widget);
efl_event_callback_legacy_call(widget, ELM_OBJ_CODE_WIDGET_EVENT_SELECTION_START, widget);
}
EAPI void