Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce memory consumption by the logging panel (disable undo events for it) #676

Merged
merged 1 commit into from
Nov 4, 2021

Commits on Nov 4, 2021

  1. Reduce memory consumption by the logging panel (disable undo events f…

    …or it)
    
    There are two fixes:
    1) undoManager.setLimit(0) -> setLimit(1) since (0) means "unlimited undo"
    See bobbylight/RSyntaxTextArea#99
    
    2) By default, JMeter adds undoManager to ALL text fields via Swing updateUI method,
    so we need to explicitly uninstall it for the case when undo is not needed
    vlsi committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    062190a View commit details
    Browse the repository at this point in the history