summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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()
 
e>
7582555b ^






94c5d83e ^


f51bd48a ^
















7582555b ^







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45