diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/status_bar.tcl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/status_bar.tcl b/lib/status_bar.tcl index a6dea2900..0e2ac07a5 100644 --- a/lib/status_bar.tcl +++ b/lib/status_bar.tcl @@ -63,8 +63,10 @@ method stop {msg} { set status $msg } -method show {msg} { - set status $msg +method show {msg {test {}}} { + if {$test eq {} || $status eq $test} { + set status $msg + } } method _delete {current} { |