[evolution/wip/webkit-composer] EEditorSelection: Fix detection of citation
- From: Tomas Popela <tpopela src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution/wip/webkit-composer] EEditorSelection: Fix detection of citation
- Date: Thu, 23 Jan 2014 13:48:14 +0000 (UTC)
commit 95f7239ed43cdabc57ee945e13af4af4e56ef1c6
Author: Tomas Popela <tpopela redhat com>
Date: Thu Jan 23 14:42:37 2014 +0100
EEditorSelection: Fix detection of citation
With this commit the situation when Enter is pressed in citation (to break
citation) is fixed
e-util/e-editor-selection.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/e-util/e-editor-selection.c b/e-util/e-editor-selection.c
index 727665f..0657004 100644
--- a/e-util/e-editor-selection.c
+++ b/e-util/e-editor-selection.c
@@ -1756,7 +1756,7 @@ e_editor_selection_is_citation (EEditorSelection *selection)
node = webkit_dom_range_get_common_ancestor_container (range, NULL);
if (WEBKIT_DOM_IS_TEXT (node))
- return FALSE;
+ return get_has_style (selection, "citation");
/* If we are changing the format of block we have to re-set bold property,
* otherwise it will be turned off because of no text in composer */
@@ -1773,7 +1773,7 @@ e_editor_selection_is_citation (EEditorSelection *selection)
if (g_strstr_len (value, -1, "cite"))
ret_val = TRUE;
else
- ret_val = FALSE;
+ ret_val = get_has_style (selection, "citation");
g_free (value);
return ret_val;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]