Reputation: 19
Please help me for the follow two questions:
Is it possible to set Jmeter up so that when we start GUI of the program and there is 'View Results Tree' the Option: Scroll automatically? to be checked by default?
And second one: Is it possible to create shortcut keys for Zoom In, Zoom Out:
Or, if this is not possible, at least set different Values for them in some properties JMeter file?
Thanks in advance!
Upvotes: 0
Views: 25
Reputation: 168157
It's unchecked and it's hardcoded and cannot be changed (at least in JMeter 5.5)
if you want to amend the behaviour change autoScrollCB.setSelected(false);
to autoScrollCB.setSelected(true);
and re-build JMeter
Since JMeter 5.3 you can use Ctrl + Alt + mouse wheel
to change fonts size.
Upvotes: 1