-rwxr-xr-x | inputmethods/keyboard/opie-keyboard.postinst | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/inputmethods/keyboard/opie-keyboard.postinst b/inputmethods/keyboard/opie-keyboard.postinst index 0083987..b9ac6f0 100755 --- a/inputmethods/keyboard/opie-keyboard.postinst +++ b/inputmethods/keyboard/opie-keyboard.postinst | |||
@@ -1,2 +1,7 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | pidof -s qpe >/dev/null && /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadInputMethods()" | 2 | if pidof -s qpe >/dev/null; then |
3 | /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadInputMethods()" | ||
4 | else | ||
5 | exit 0 | ||
6 | fi | ||
7 | |||