Uploaded image for project: 'Qt Creator'
  1. Qt Creator
  2. QTCREATORBUG-27386

Lift the max navigation history size limit

    XMLWordPrintable

Details

    • Suggestion
    • Resolution: Done
    • Not Evaluated
    • Qt Creator 8.0.0-beta1
    • Qt Creator 7.0.0
    • Editors
    • None
    • All Platforms

    • All
    • 63702b52e2 (qt-creator/qt-creator/master)

    Description

      For big project, the navigation history could be very large(>30) during one session, I see in editorview.cpp has these lines in effect.

      while (m_navigationHistory.size() >= 30) {
        if (m_currentNavigationHistoryPosition > 15) {
      	  m_navigationHistory.removeFirst();
      	  --m_currentNavigationHistoryPosition;
        } else {
      	  m_navigationHistory.removeLast();
        }
      }
      

      Is it necessary to limit the max navigation history size?

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            davschul David Schulz
            william_9527 Bill Jolly
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes