diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-10-04 12:35:33 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-10-04 17:08:58 -0700 |
commit | f7f31c55cb3b126d530fd18b0de2b34be9edfca0 (patch) | |
tree | 9407e7ddcac2be83f449a5cac6ec87147b507fa5 /scripts/mobilecomponents.sh | |
parent | 636904e078b814d377d6f4a087a2836ed7a0f206 (diff) | |
download | subsurface-f7f31c55cb3b126d530fd18b0de2b34be9edfca0.tar.gz |
QML UI: hide all buttons when keyboard is visible
This extends the hack in commit 2e057bc29a ("QML UI: hide action button
when keyboard is visible") to the left and right button as well.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts/mobilecomponents.sh')
-rwxr-xr-x | scripts/mobilecomponents.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/mobilecomponents.sh b/scripts/mobilecomponents.sh index 487c55d4c..04f2a2c6b 100755 --- a/scripts/mobilecomponents.sh +++ b/scripts/mobilecomponents.sh @@ -73,6 +73,8 @@ cp $BREEZE/icons/actions/22/handle-right.svg $MC/icons pushd $MC ln -s $SRC/$BREEZE . sed -i -e "s/visible: root.action/visible: root.action \&\& \!Qt.inputMethod.visible/g" src/controls/private/ActionButton.qml +sed -i -e "s/visible: root.leftAction/visible: root.leftAction \&\& \!Qt.inputMethod.visible/g" src/controls/private/ActionButton.qml +sed -i -e "s/visible: root.rightAction/visible: root.rightAction \&\& \!Qt.inputMethod.visible/g" src/controls/private/ActionButton.qml popd echo org.kde.plasma.kirigami synced from upstream |