summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-03-12 17:14:56 +0100
committerhut <hut@lavabit.com>2010-03-12 17:14:56 +0100
commit89660a640e925c7cd7806309003d069816053de8 (patch)
treea9f3216cb53f4c53426dae792b42dc8ec5585b50
parentad3c9818d57da3c4847189fdc9ed9666668ffad9 (diff)
downloadranger-89660a640e925c7cd7806309003d069816053de8.tar.gz
environment: changed misleading method name
-rw-r--r--ranger/container/environment.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/container/environment.py b/ranger/container/environment.py
index be1d96c5..c67161ca 100644
--- a/ranger/container/environment.py
+++ b/ranger/container/environment.py
@@ -109,7 +109,7 @@ class Environment(SettingsAware):
 		stat = statvfs(path)
 		return stat.f_bavail * stat.f_bsize
 
-	def assign_correct_cursor_positions(self):
+	def assign_cursor_positions_for_subdirs(self):
 		"""Assign correct cursor positions for subdirectories"""
 		last_path = None
 		for path in reversed(self.pathway):
@@ -159,7 +159,7 @@ class Environment(SettingsAware):
 				pathway.append(self.get_directory(currentpath))
 			self.pathway = tuple(pathway)
 
-		self.assign_correct_cursor_positions()
+		self.assign_cursor_positions_for_subdirs()
 
 		# set the current file.
 		self.pwd.directories_first = self.settings.directories_first
52705f4956df9a756b902b187f31799c1451a4'>^
bc643692 ^


69d95127 ^
82ac0b7e ^


bc643692 ^
a91c1c2a ^
bc643692 ^

5497090a ^
82ac0b7e ^

a91c1c2a ^
82ac0b7e ^



2199940a ^
82ac0b7e ^
363be37f ^
82ac0b7e ^




363be37f ^
ac0e9db5 ^
05d17773 ^
82ac0b7e ^
ac0e9db5 ^
ab6ed192 ^
0487a30e ^
ac0e9db5 ^
363be37f ^


35064671 ^
82ac0b7e ^

0487a30e ^
35064671 ^



e4630643 ^
0487a30e ^
82ac0b7e ^
363be37f ^
35064671 ^
82ac0b7e ^

35064671 ^
363be37f ^
82ac0b7e ^



82ac0b7e ^


363be37f ^

82ac0b7e ^


35064671 ^
82ac0b7e ^


35064671 ^
0f125d5f ^
82ac0b7e ^
363be37f ^


82ac0b7e ^




363be37f ^
82ac0b7e ^

35064671 ^
ac0e9db5 ^
35064671 ^
82ac0b7e ^
35064671 ^
82ac0b7e ^








363be37f ^
82ac0b7e ^

35064671 ^
82ac0b7e ^






ac0e9db5 ^

82ac0b7e ^

e4630643 ^



0487a30e ^
82ac0b7e ^


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