[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    [calligra/textshape-stylesWidget-PierreSt] libs/kotext: Fix merge style to caret without selection
From:       Pierre Stirnweiss <pstirnweiss () googlemail ! com>
Date:       2013-02-03 21:41:38
Message-ID: 20130203214138.7F39AA60D4 () git ! kde ! org
[Download RAW message or body]

Git commit 97c2d333435486f319df74eef24174262f6c66c1 by Pierre Stirnweiss.
Committed on 13/01/2013 at 10:42.
Pushed by pstirnweiss into branch 'textshape-stylesWidget-PierreSt'.

Fix merge style to caret without selection

The style was not properly merged to the caret if there was no selected
text.

REVIEW: 108379

M  +10   -0    libs/kotext/KoTextEditor_format.cpp

http://commits.kde.org/calligra/97c2d333435486f319df74eef24174262f6c66c1

diff --git a/libs/kotext/KoTextEditor_format.cpp \
b/libs/kotext/KoTextEditor_format.cpp index 364042e..bc981bb 100644
--- a/libs/kotext/KoTextEditor_format.cpp
+++ b/libs/kotext/KoTextEditor_format.cpp
@@ -565,10 +565,20 @@ void KoTextEditor::mergeAutoStyle(const QTextCharFormat \
&deltaCharFormat)  {
     d->updateState(KoTextEditor::Private::Custom, "Formatting");
 
+    int caretAnchor = d->caret.anchor();
+    int caretPosition = d->caret.position();
     MergeAutoCharacterStyleVisitor visitor(this, deltaCharFormat);
 
     recursivelyVisitSelection(d->document->rootFrame()->begin(), visitor);
 
+    if (!isEditProtected() && caretAnchor == caretPosition) { //if there is no \
selection, it can happen that the caret does not get the proper style applied \
(begining of a block). We need to force it. +        \
d->caret.mergeCharFormat(deltaCharFormat); +    }
+    else {
+        d->caret.setPosition(caretAnchor);
+        d->caret.setPosition(caretPosition, QTextCursor::KeepAnchor);
+    }
+
     d->updateState(KoTextEditor::Private::NoOp);
     emit textFormatChanged();
 }


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic