Details
-
Suggestion
-
Resolution: Done
-
Not Evaluated
-
Qt Creator 7.0.0
-
None
-
All Platforms
-
-
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?