diff options
author | Heiko Voigt <hvoigt@hvoigt.net> | 2010-02-20 14:38:38 +0100 |
---|---|---|
committer | Pat Thoyts <patthoyts@users.sourceforge.net> | 2010-07-10 23:41:54 +0100 |
commit | b963d11827c79fbd14f5b4438cca8298145192be (patch) | |
tree | 79a94f038993d86fe41c82811fbf9a7dd9f98dbf | |
parent | 13a3d637b2d83fceb432fe7b9e21f8c4d882fa41 (diff) | |
download | git-b963d11827c79fbd14f5b4438cca8298145192be.tar.gz git-b963d11827c79fbd14f5b4438cca8298145192be.tar.xz |
git-gui: fix usage of themed widgets variable
There was one forgotten global so NS was not visible to the method
which resulted in an error.
Signed-off-by: Heiko Voigt <hvoigt@hvoigt.net>
-rw-r--r-- | lib/status_bar.tcl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/status_bar.tcl b/lib/status_bar.tcl index 5fe3aad38..95cb44991 100644 --- a/lib/status_bar.tcl +++ b/lib/status_bar.tcl @@ -39,6 +39,7 @@ method _oneline_pack {} { } constructor two_line {path} { + global NS set w $path set w_l $w.l set w_c $w.c |