[evolution] EHTMLEditorView - Replace the active selection when inserting emoticons
- From: Tomas Popela <tpopela src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution] EHTMLEditorView - Replace the active selection when inserting emoticons
- Date: Mon, 9 Feb 2015 10:07:40 +0000 (UTC)
commit ea428bd68e8e144c91bfe227c2dec9618c814e75
Author: Tomas Popela <tpopela redhat com>
Date: Mon Feb 9 11:03:59 2015 +0100
EHTMLEditorView - Replace the active selection when inserting emoticons
e-util/e-html-editor-view.c | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/e-util/e-html-editor-view.c b/e-util/e-html-editor-view.c
index 3b27f02..5f30156 100644
--- a/e-util/e-html-editor-view.c
+++ b/e-util/e-html-editor-view.c
@@ -1435,6 +1435,7 @@ emoticon_read_async_cb (GFile *file,
LoadContext *load_context)
{
EHTMLEditorView *view = load_context->view;
+ EHTMLEditorSelection *selection;
EEmoticon *emoticon = load_context->emoticon;
GError *error = NULL;
gboolean misplaced_selection = FALSE, empty = FALSE;
@@ -1462,9 +1463,13 @@ emoticon_read_async_cb (GFile *file,
if (error || (size == -1))
goto out;
- e_html_editor_selection_save (e_html_editor_view_get_selection (view));
+ selection = e_html_editor_view_get_selection (view);
+ if (!e_html_editor_selection_is_collapsed (selection))
+ e_html_editor_view_exec_command (
+ view, E_HTML_EDITOR_VIEW_COMMAND_DELETE, NULL);
document = webkit_web_view_get_dom_document (WEBKIT_WEB_VIEW (view));
+ e_html_editor_selection_save (selection);
selection_start_marker = webkit_dom_document_get_element_by_id (
document, "-x-evo-selection-start-marker");
selection_end_marker = webkit_dom_document_get_element_by_id (
@@ -1597,8 +1602,7 @@ emoticon_read_async_cb (GFile *file,
}
}
- e_html_editor_selection_restore (
- e_html_editor_view_get_selection (view));
+ e_html_editor_selection_restore (selection);
e_html_editor_view_set_changed (view, TRUE);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]