From dd3e4cb35848193fb44bb5e61036f017226cf47f Mon Sep 17 00:00:00 2001 From: df Date: Mon, 11 May 2020 11:40:14 +0000 Subject: [PATCH 1/2] Make percentage visible in progressbar image Add title attribute for tooltip since % value isn't actually displayed otherwise. --- webif/lib/progressbar | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webif/lib/progressbar b/webif/lib/progressbar index c2a3364..99c0f03 100644 --- a/webif/lib/progressbar +++ b/webif/lib/progressbar @@ -3,8 +3,8 @@ if {![exists -proc progressbar]} { proc progressbar {percent} { set pos [expr 118 - $percent / 100.0 * 118] return "\"$percent%\"" } } - From 18aee6760772c3b2e52129cdb3f848f3506f7e69 Mon Sep 17 00:00:00 2001 From: df Date: Mon, 11 May 2020 11:42:21 +0000 Subject: [PATCH 2/2] Make percentage visible in progressbar image --- webif/lib/progressbar | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webif/lib/progressbar b/webif/lib/progressbar index 99c0f03..9ea7297 100644 --- a/webif/lib/progressbar +++ b/webif/lib/progressbar @@ -3,8 +3,9 @@ if {![exists -proc progressbar]} { proc progressbar {percent} { set pos [expr 118 - $percent / 100.0 * 118] return "\"$percent%\"" } } +