mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 18:07:59 +00:00
Remove has_focus from Session and use the one in Terminal. Active vs passive
cursor now behaves correctly. [originally from svn r2232]
This commit is contained in:
parent
d50ad9ddb9
commit
55fc07c583
@ -45,7 +45,6 @@ typedef struct {
|
|||||||
Terminal *term;
|
Terminal *term;
|
||||||
/* Display state */
|
/* Display state */
|
||||||
int font_width, font_height;
|
int font_width, font_height;
|
||||||
int has_focus;
|
|
||||||
/* Line discipline */
|
/* Line discipline */
|
||||||
void *ldisc;
|
void *ldisc;
|
||||||
/* Backend */
|
/* Backend */
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: macterm.c,v 1.3 2002/11/19 23:59:27 ben Exp $ */
|
/* $Id: macterm.c,v 1.4 2002/11/20 00:11:05 ben Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1999 Simon Tatham
|
* Copyright (c) 1999 Simon Tatham
|
||||||
* Copyright (c) 1999, 2002 Ben Harris
|
* Copyright (c) 1999, 2002 Ben Harris
|
||||||
@ -729,7 +729,7 @@ void mac_activateterm(WindowPtr window, Boolean active) {
|
|||||||
Session *s;
|
Session *s;
|
||||||
|
|
||||||
s = (Session *)GetWRefCon(window);
|
s = (Session *)GetWRefCon(window);
|
||||||
s->has_focus = active;
|
s->term->has_focus = active;
|
||||||
term_update(s->term);
|
term_update(s->term);
|
||||||
if (active)
|
if (active)
|
||||||
ShowControl(s->scrollbar);
|
ShowControl(s->scrollbar);
|
||||||
|
Loading…
Reference in New Issue
Block a user