OSDN Git Service

Revert "fakevim: also set foreground color for search matches"
authorhjk <qtc-committer@nokia.com>
Fri, 5 Aug 2011 14:00:40 +0000 (16:00 +0200)
committerEike Ziller <eike.ziller@nokia.com>
Thu, 11 Aug 2011 08:07:57 +0000 (10:07 +0200)
This reverts commit c1f225fd8f3020957c3326782b02ae41e4ad2aed.

This does not cover the case where the cursor is in the marked
text, which then blinks black-on-black.

Change-Id: Ic94ebbbb3d850624a8fbbc0e1d9d49ba70992ad1
Reviewed-on: http://codereview.qt.nokia.com/2698
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
src/plugins/fakevim/fakevimhandler.cpp

index f441747..799a92d 100644 (file)
@@ -3859,7 +3859,6 @@ void FakeVimHandler::Private::highlightMatches(const QString &needle)
             sel.cursor = tc;
             sel.format = tc.blockCharFormat();
             sel.format.setBackground(QColor(177, 177, 0));
-            sel.format.setForeground(Qt::black);
             m_searchSelections.append(sel);
             if (document()->characterAt(tc.position()) == ParagraphSeparator)
                 tc.movePosition(Right, MoveAnchor);