diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-10-05 23:15:55 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-10-13 11:32:27 -0700 |
commit | 1e25c85dde8013526a9ea87dcd3b9b0681ddc95f (patch) | |
tree | 145c4da511f3f97518621d72f4f5f12ee8a2dc35 /scripts | |
parent | 272cb43c4e6b358e7d4ed7515534d8c772e3aae9 (diff) | |
download | subsurface-1e25c85dde8013526a9ea87dcd3b9b0681ddc95f.tar.gz |
build-system: update the mobile components script
The hack to remove the action button caused situations where the action
button didn't return. Let's skip that for now. All the other fixes
appear to still be needed.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/mobilecomponents.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/mobilecomponents.sh b/scripts/mobilecomponents.sh index 8de2d9bb4..6945a3713 100755 --- a/scripts/mobilecomponents.sh +++ b/scripts/mobilecomponents.sh @@ -55,11 +55,6 @@ cp $BREEZE/icons/actions/22/overflow-menu.svg $MC/icons pushd $MC ln -s $SRC/breeze-icons . -# do not show the action buttons when the keyboard is open -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 - # kirigami hack: passive notification hijacks area even after disabled. # https://bugs.kde.org/show_bug.cgi?id=394204 sed -i -e "s/width: backgroundRect/enabled: root.enabled; width: backgroundRect/g" src/controls/templates/private/PassiveNotification.qml |