mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
Three new configurable options:
- Robert de Bath's Compose key is now off by default and configurable on - The ages-old controversy over whether ALT by itself should bring the System menu up is now controllable by a config option - You can now independently configure whether scrollback resets on a keypress _and_ whether it resets on screen activity. [originally from svn r741]
This commit is contained in:
@ -212,7 +212,7 @@ void term_update(void) {
|
||||
ctx = get_ctx();
|
||||
if (ctx) {
|
||||
if ( (seen_key_event && (cfg.scroll_on_key)) ||
|
||||
(seen_disp_event && (!cfg.scroll_on_key)) ) {
|
||||
(seen_disp_event && (cfg.scroll_on_disp)) ) {
|
||||
disptop = scrtop;
|
||||
seen_disp_event = seen_key_event = 0;
|
||||
update_sbar();
|
||||
|
Reference in New Issue
Block a user