about summary refs log tree commit diff stats
path: root/ranger/gui
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-17 20:25:06 +0200
committerhut <hut@lavabit.com>2010-04-17 20:25:06 +0200
commit7213292e490a4f6c73a915d2ea6b834c005dd424 (patch)
tree936b36b9885d29bb692ea255dfbd3969e4d1a538 /ranger/gui
parent2432c8622c1ff66f62753d1cd9d95508efb276a0 (diff)
downloadranger-7213292e490a4f6c73a915d2ea6b834c005dd424.tar.gz
Added option "max_console_history_size"
Diffstat (limited to 'ranger/gui')
-rw-r--r--ranger/gui/widgets/console.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/gui/widgets/console.py b/ranger/gui/widgets/console.py
index 8480ea42..5f45c26f 100644
--- a/ranger/gui/widgets/console.py
+++ b/ranger/gui/widgets/console.py
@@ -71,7 +71,7 @@ class Console(Widget):
 			self.historypaths = [relpath_conf(x) for x in \
 				('history', 'history_search', 'history_qopen', 'history_open')]
 			for i, path in enumerate(self.historypaths):
-				hist = History(self.settings.max_history_size)
+				hist = History(self.settings.max_console_history_size)
 				self.histories.append(hist)
 				if ranger.arg.clean: continue
 				try: f = open(path, 'r')