Merge pull request #1009 from openoms/v1.4patch23

services: stop menu removing services on ESC
This commit is contained in:
Christian Rotzoll 2020-02-04 21:20:06 +01:00 committed by GitHub
commit e1e7c4cda9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -101,6 +101,9 @@ echo "dialogcancel(${dialogcancel})"
if [ ${dialogcancel} -eq 1 ]; then
echo "user canceled"
exit 1
elif [ ${dialogcancel} -eq 255 ]; then
echo "ESC pressed"
exit 1
fi
needsReboot=0