Project

General

Profile

0001-also-preserve-temporary-history-entries-on-the-last.patch

admin, 10/10/2008 05:32 PM

View differences:

src/uisupport/inputline.cpp
56 56
    if(idx < history.count())
57 57
      idx++;
58 58

  
59
    if(idx < history.count())
59
    if(idx < history.count() || tempHistory.contains(idx)) // tempHistory might have an entry for idx == history.count() + 1
60 60
      showHistoryEntry();
61 61
    else
62 62
      resetLine();              // equals clear() in this case
63
-