diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2013-06-11 19:23:38 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2013-06-11 19:23:38 -0400 |
commit | 2b8cd2fccf2938a9a1109be44aaf38554232c5d9 (patch) | |
tree | 0f2f39f5f7bc11baf6c5b5c77e677b546ffe092c /indra/viewer_components | |
parent | dcfb18373eca7986a73d8b9a1d34970cc0a23ed9 (diff) |
MAINT-2333: Use bouncing progress bar for Linux updater message.
This eliminates the user expectation that s/he must click OK before the
updater will begin installing the new viewer.
Diffstat (limited to 'indra/viewer_components')
-rwxr-xr-x | indra/viewer_components/updater/scripts/linux/update_install | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/viewer_components/updater/scripts/linux/update_install b/indra/viewer_components/updater/scripts/linux/update_install index a9df9042fd..03089f192e 100755 --- a/indra/viewer_components/updater/scripts/linux/update_install +++ b/indra/viewer_components/updater/scripts/linux/update_install @@ -69,8 +69,11 @@ then # zenity on PATH and is executable # clear any previous message clear_message # put up a new zenity box and capture its pid - "$zenpath" --info --title "Second Life Viewer Updater" \ - --width=320 --height=120 --text="$*" & +## "$zenpath" --info --title "Second Life Viewer Updater" \ +## --width=320 --height=120 --text="$*" & + # MAINT-2333: use bouncing progress bar + "$zenpath" --progress --pulsate --no-cancel --title "Second Life Viewer Updater" \ + --width=320 --height=120 --text "$*" </dev/null & statuspid=$! } |