From 8a7f8038b5e4e4c674ae8924a0c551dd53ce8559 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Tue, 20 Aug 2019 16:01:10 +0200 Subject: [PATCH] Do not show a tool tip if quiet option is used --- include/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions b/include/functions index 8baf6562..204d9e55 100644 --- a/include/functions +++ b/include/functions @@ -679,7 +679,7 @@ DisplayToolTip() { # Display tooltip when enabled and no tip has been displayed yet - if [ ${SHOW_TOOL_TIPS} -eq 1 -a ${TOOLTIP_SHOWED} -eq 0 ]; then + if [ ${SHOW_TOOL_TIPS} -eq 1 -a ${TOOLTIP_SHOWED} -eq 0 -a ${QUIET} -eq 0 ]; then # Check if we already have already discovered a proper echo command tool. It not, set it default to 'echo'. if [ "${ECHOCMD}" = "" ]; then ECHOCMD="echo"; fi if [ ${CRONJOB} -eq 0 ]; then