diff options
author | hut <hut@lavabit.com> | 2013-02-01 00:27:58 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2013-02-01 00:27:58 +0100 |
commit | 309d592b24299dcc8705115af92adb7667213a3d (patch) | |
tree | f3b384b4b42e9bbf51935378326db20706fa8073 | |
parent | 3aa53556c3486c234edba7e4bc388d2c5ed29ccc (diff) | |
download | ranger-309d592b24299dcc8705115af92adb7667213a3d.tar.gz |
widgets.statusbar: removed space between size and size unit
-rw-r--r-- | ranger/gui/widgets/statusbar.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ranger/gui/widgets/statusbar.py b/ranger/gui/widgets/statusbar.py index d87ff291..247ebe62 100644 --- a/ranger/gui/widgets/statusbar.py +++ b/ranger/gui/widgets/statusbar.py @@ -173,8 +173,10 @@ class StatusBar(Widget): dest = '?' left.add(' -> ' + dest, 'link', how) else: + left.add_space() + if self.settings.display_size_in_status_bar and target.infostring: - left.add(target.infostring) + left.add(target.infostring.replace(" ", "")) left.add_space() |