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

List:       kde-commits
Subject:    [calligra] libs/kotext: Fix merge style to caret without selection
From:       Pierre Stirnweiss <pstirnweiss () googlemail ! com>
Date:       2013-02-13 17:53:02
Message-ID: 20130213175302.C48E3A6091 () git ! kde ! org
[Download RAW message or body]

Git commit e7de1becab5b0a7648ae960f48c0df538f9bc1bd by Pierre Stirnweiss.
Committed on 13/01/2013 at 10:42.
Pushed by pstirnweiss into branch 'master'.

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/e7de1becab5b0a7648ae960f48c0df538f9bc1bd

diff --git a/libs/kotext/KoTextEditor_format.cpp \
b/libs/kotext/KoTextEditor_format.cpp index d9e81a1..c729653 100644
--- a/libs/kotext/KoTextEditor_format.cpp
+++ b/libs/kotext/KoTextEditor_format.cpp
@@ -564,10 +564,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