summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2013-02-01 00:27:58 +0100
committerhut <hut@lavabit.com>2013-02-01 00:27:58 +0100
commit309d592b24299dcc8705115af92adb7667213a3d (patch)
treef3b384b4b42e9bbf51935378326db20706fa8073 /ranger
parent3aa53556c3486c234edba7e4bc388d2c5ed29ccc (diff)
downloadranger-309d592b24299dcc8705115af92adb7667213a3d.tar.gz
widgets.statusbar: removed space between size and size unit
Diffstat (limited to 'ranger')
-rw-r--r--ranger/gui/widgets/statusbar.py4
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()
 
9' href='#n119'>119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161