summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-10-03 04:46:39 +0200
committerhut <hut@lavabit.com>2011-10-03 04:46:39 +0200
commit9095d0f622be44918abc0709df3574bffa277a80 (patch)
treec43cfb1a9c0db0025a6b2c935f23ab6dd914e74b
parent1069340758a6dc425beefb9d3807a64026ba9641 (diff)
downloadranger-9095d0f622be44918abc0709df3574bffa277a80.tar.gz
core.actions: Fix another garbage collection bug
-rw-r--r--ranger/core/actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index dff3e9b9..ffcf0dc7 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -53,7 +53,7 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
 		"""Reset the filemanager, clearing the directory buffer"""
 		old_path = self.env.cwd.path
 		self.previews = {}
-		self.env.garbage_collect(-1)
+		self.env.garbage_collect(-1, self.tabs)
 		self.enter_dir(old_path)
 
 	def reload_cwd(self):
+0000 Added statuses settings to prefs output' href='/danisanti/profani-tty/commit/tests/test_server_events.c?id=0e2fbeb350f667ee6c4f86e49e320cc4cd9a5cc5'>0e2fbeb3 ^
a7a28506 ^
0e2fbeb3 ^
a7a28506 ^













0e2fbeb3 ^
a7a28506 ^
0e2fbeb3 ^
a7a28506 ^










0e2fbeb3 ^
a7a28506 ^












0e2fbeb3 ^
a7a28506 ^















0e2fbeb3 ^
a7a28506 ^
0e2fbeb3 ^
a7a28506 ^

5afb296e ^
0338d136 ^
5afb296e ^

0338d136 ^

571665ee ^
5afb296e ^

0338d136 ^
5afb296e ^
571665ee ^
0338d136 ^
571665ee ^


0338d136 ^

571665ee ^




0338d136 ^
571665ee ^

0338d136 ^
571665ee ^


0338d136 ^

571665ee ^




0338d136 ^
571665ee ^





0338d136 ^





















2c15aba9 ^
571665ee ^


0338d136 ^
571665ee ^


0338d136 ^
571665ee ^
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184