aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2016-11-25 16:06:52 +0100
committerLiang Qi <liang.qi@qt.io>2016-11-25 16:06:52 +0100
commite67e97e9543eae2de42666eec3ff4d3cdca81db3 (patch)
treedabfba5605c8aa99ad2b548f0ad95b02d4569cac /src
parent1ba0613309439f778b4b4e955131d80936490371 (diff)
parentea873857fd7c92608bfa64d080dbdf9589ffa4b3 (diff)
Merge remote-tracking branch 'origin/5.6' into 5.7
Conflicts: src/virtualkeyboard/content/InputPanel.qml Change-Id: I6839198e123f682a88132f8efbed0bdaf8835e7e
Diffstat (limited to 'src')
-rw-r--r--src/virtualkeyboard/content/InputPanel.qml6
-rw-r--r--src/virtualkeyboard/shifthandler.cpp8
2 files changed, 9 insertions, 5 deletions
diff --git a/src/virtualkeyboard/content/InputPanel.qml b/src/virtualkeyboard/content/InputPanel.qml
index 1ac2eb86..2e500a1b 100644
--- a/src/virtualkeyboard/content/InputPanel.qml
+++ b/src/virtualkeyboard/content/InputPanel.qml
@@ -46,11 +46,13 @@ import QtQuick.VirtualKeyboard 2.1
Item {
id: inputPanel
- /*! \qmlproperty bool Active state of the input panel
+ /*!
+ \qmlproperty bool InputPanel::active
\since QtQuick.VirtualKeyboard 2.0
This property reflects the active status of the input panel.
- The keyboard should be made visible to user when the active is true.
+ The keyboard should be made visible to the user when this property is
+ \c true.
*/
property alias active: keyboard.active
diff --git a/src/virtualkeyboard/shifthandler.cpp b/src/virtualkeyboard/shifthandler.cpp
index 4c9f498b..d6252fa9 100644
--- a/src/virtualkeyboard/shifthandler.cpp
+++ b/src/virtualkeyboard/shifthandler.cpp
@@ -201,10 +201,13 @@ void ShiftHandler::reset()
autoCapitalizationEnabled = false;
toggleShiftEnabled = false;
}
- d->inputContext->setShift(preferUpperCase);
- d->inputContext->setCapsLock(preferUpperCase);
setToggleShiftEnabled(toggleShiftEnabled);
setAutoCapitalizationEnabled(autoCapitalizationEnabled);
+ d->inputContext->setCapsLock(preferUpperCase);
+ if (preferUpperCase)
+ d->inputContext->setShift(preferUpperCase);
+ else
+ autoCapitalize();
}
}
@@ -237,7 +240,6 @@ void ShiftHandler::autoCapitalize()
void ShiftHandler::restart()
{
reset();
- autoCapitalize();
}
void ShiftHandler::shiftChanged()