From bdcdc8b794d67b6539fca442ff298f4aefcd0cd9 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Mon, 30 Jun 2025 11:01:44 +0200 Subject: [PATCH] Update core.func --- misc/core.func | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/core.func b/misc/core.func index 01101ae3..87284fca 100644 --- a/misc/core.func +++ b/misc/core.func @@ -467,14 +467,14 @@ stop_spinner() { rm -f /tmp/.spinner.pid unset SPINNER_PID fi - - printf "\r\033[K\e[?25h" # clear line + restore cursor + printf "\r\033[K" } msg_ok() { stop_spinner local msg="$1" echo -e "${BFR:-} ${CM:-✔️} ${GN}${msg}${CL}" + printf "\e[?25h" } msg_error() {