From 16b5271810620055f776d3b09f042451a108468f Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Tue, 18 Aug 2009 14:29:32 +0200 Subject: [PATCH] Bring back old inputline history behavior Cursor down now again always saves the current line in history and starts a new one. Brought back from the dead by user request. --- src/uisupport/multilineedit.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/uisupport/multilineedit.cpp b/src/uisupport/multilineedit.cpp index 5b81ab32..77e2cc6c 100644 --- a/src/uisupport/multilineedit.cpp +++ b/src/uisupport/multilineedit.cpp @@ -169,6 +169,9 @@ void MultiLineEdit::historyMoveForward() { showHistoryEntry(); else reset(); // equals clear() in this case + } else { + addToHistory(text()); + reset(); } } -- 2.20.1