1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 19:12:48 -05:00

Telnet specials menu was not being reinstated after a session was restarted in

the same window (Windows version only).

Policy change: it's now the backend's responsibility to call
update_specials_menu() at the start of a session (or whenever it feels ready),
if it has any special commands. Otherwise the menu won't be displayed.

[originally from svn r4649]
This commit is contained in:
Jacob Nevins
2004-10-17 14:44:27 +00:00
parent 1b3eb3e20d
commit 4482a79162
4 changed files with 12 additions and 4 deletions

View File

@ -3217,7 +3217,6 @@ static void start_backend(struct gui_data *inst)
sfree(title);
}
inst->back->provide_logctx(inst->backhandle, inst->logctx);
update_specials_menu(inst);
term_provide_resize_fn(inst->term, inst->back->size, inst->backhandle);
@ -3436,6 +3435,8 @@ int pt_main(int argc, char **argv)
inst->specialsitem1 = menuitem;
MKMENUITEM(NULL, NULL);
inst->specialsitem2 = menuitem;
gtk_widget_hide(inst->specialsitem1);
gtk_widget_hide(inst->specialsitem2);
MKMENUITEM("Clear Scrollback", clear_scrollback_menuitem);
MKMENUITEM("Reset Terminal", reset_terminal_menuitem);
MKMENUITEM("Copy All", copy_all_menuitem);