summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2023-12-05 15:55:25 +0100
committerSimon Rettberg2023-12-05 15:55:25 +0100
commit28ac1127d60c7caca195989811bf281d90490d4d (patch)
tree8eccaeb9f0d4d6c7f3846368db80364ff0655150
parent[run-virt] Make sure we don't pass localhost as DNS server to VMs (diff)
downloadmltk-28ac1127d60c7caca195989811bf281d90490d4d.tar.gz
mltk-28ac1127d60c7caca195989811bf281d90490d4d.tar.xz
mltk-28ac1127d60c7caca195989811bf281d90490d4d.zip
[kiosk-chromium] Fix setting scale factor
-rw-r--r--core/modules/kiosk-chromium/data/opt/openslx/scripts/kiosk-launch.d/00-chromium2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/kiosk-chromium/data/opt/openslx/scripts/kiosk-launch.d/00-chromium b/core/modules/kiosk-chromium/data/opt/openslx/scripts/kiosk-launch.d/00-chromium
index 3bddba0b..98f8fa23 100644
--- a/core/modules/kiosk-chromium/data/opt/openslx/scripts/kiosk-launch.d/00-chromium
+++ b/core/modules/kiosk-chromium/data/opt/openslx/scripts/kiosk-launch.d/00-chromium
@@ -84,7 +84,7 @@ if [ -n "$SLX_BROWSER_ZOOM" ]; then
while [ "${#v}" -lt 3 ]; do
v="0$v"
done
- chromium_args+=( "--force-device-scale-factor" "${v:0:-2}.${v:${#v}-2}" )
+ chromium_args+=( "--force-device-scale-factor=${v:0:-2}.${v:${#v}-2}" )
fi
if [ -n "$SLX_BROWSER_RELOAD_SECS" ] && [ "$SLX_BROWSER_RELOAD_SECS" -gt 0 ]; then