diff options
author | hut <hut@lavabit.com> | 2009-06-29 01:45:48 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-06-29 01:45:48 +0200 |
commit | 75c3d3dc6fc97501a1c13643682fd732b316a559 (patch) | |
tree | cadb07dea5e839cc7f056ad713c25245d4914993 /code/bars.rb | |
parent | 2f41a544771c0fcaf8abfee963063ba212204d17 (diff) | |
download | ranger-75c3d3dc6fc97501a1c13643682fd732b316a559.tar.gz |
bars fixed
1. colors wouldn't display correctly, because used color_at instead of attr_at. 2. x did not terminate the bar process because of a call to a nonexistant method. 3. added proper colorscheme support
Diffstat (limited to 'code/bars.rb')
-rw-r--r-- | code/bars.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/bars.rb b/code/bars.rb index 8e176c01..08546a79 100644 --- a/code/bars.rb +++ b/code/bars.rb @@ -3,7 +3,7 @@ require 'thread' class Bar def kill(evil = true) Fm.bar_del(self) - Fm.force_update +# Fm.force_update @thread.kill end |