Commit e9cdc85a authored by Mikhail Tergoev's avatar Mikhail Tergoev

minor fixes pw_stop_progress_bar

parent d08147c5
...@@ -4148,30 +4148,22 @@ pw_start_progress_bar_install_game () { ...@@ -4148,30 +4148,22 @@ pw_start_progress_bar_install_game () {
} }
pw_stop_progress_bar () { pw_stop_progress_bar () {
if [[ -n $PW_YAD_PID_PROGRESS_BAR_BLOCK ]] ; then [[ -n $PW_YAD_PID_PROGRESS_BAR_BLOCK ]] && kill -s SIGUSR1 "$PW_YAD_PID_PROGRESS_BAR_BLOCK" &>/dev/null
kill -s SIGUSR1 "$PW_YAD_PID_PROGRESS_BAR_BLOCK" &>/dev/null [[ -n $PW_YAD_PID_PROGRESS_BAR_CS ]] && kill -s SIGUSR1 "$PW_YAD_PID_PROGRESS_BAR_CS" &>/dev/null
elif [[ -n $PW_YAD_PID_PROGRESS_BAR_CS ]] ; then [[ -n $PW_YAD_PID_PFX_COVER_UI ]] && kill -s SIGUSR1 "$PW_YAD_PID_PFX_COVER_UI" &>/dev/null
kill -s SIGUSR1 "$PW_YAD_PID_PROGRESS_BAR_CS" &>/dev/null [[ -n $PW_YAD_PID_PROGRESS_BAR_COVER ]] && kill -s SIGUSR1 "$PW_YAD_PID_PROGRESS_BAR_COVER" &>/dev/null
elif [[ -n $PW_YAD_PID_PFX_COVER_UI ]] ; then unset PW_YAD_PID_PROGRESS_BAR_BLOCK PW_YAD_PID_PROGRESS_BAR_CS
kill -s SIGUSR1 "$PW_YAD_PID_PFX_COVER_UI" &>/dev/null unset PW_YAD_PID_PFX_COVER_UI PW_YAD_PID_PROGRESS_BAR_COVER
elif [[ -n $PW_YAD_PID_PROGRESS_BAR_COVER ]] ; then
kill -s SIGUSR1 "$PW_YAD_PID_PROGRESS_BAR_COVER" &>/dev/null
fi
unset PW_YAD_PID_PROGRESS_BAR_BLOCK PW_YAD_PID_PROGRESS_BAR_CS \
PW_YAD_PID_PFX_COVER_UI PW_YAD_PID_PROGRESS_BAR_COVER
return 0
} }
export -f pw_stop_progress_bar export -f pw_stop_progress_bar
pw_stop_progress_bar_cover () { pw_stop_progress_bar_cover () {
kill -s KILL "$PW_YAD_PID_PROGRESS_BAR_COVER" &>/dev/null kill -s KILL "$PW_YAD_PID_PROGRESS_BAR_COVER" &>/dev/null
return 0
} }
export -f pw_stop_progress_bar_cover export -f pw_stop_progress_bar_cover
pw_stop_progress_bar_cover_block () { pw_stop_progress_bar_cover_block () {
kill -s KILL "$PW_YAD_PID_PROGRESS_BAR_COVER_BLOCK" &>/dev/null kill -s KILL "$PW_YAD_PID_PROGRESS_BAR_COVER_BLOCK" &>/dev/null
return 0
} }
export -f pw_stop_progress_bar_cover_block export -f pw_stop_progress_bar_cover_block
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment