We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ace6fc1 commit 410f5cfCopy full SHA for 410f5cf
1 file changed
vt/pdckbd.c
@@ -59,6 +59,8 @@ emulation is in place.
59
https://www.gnu.org/software/screen/manual/html_node/Control-Sequences.html
60
*/
61
62
+void PDC_check_for_resize( void);
63
+
64
extern bool PDC_resize_occurred;
65
66
static bool check_key( int *c)
@@ -100,6 +102,11 @@ static bool check_key( int *c)
100
102
else
101
103
rval = FALSE;
104
#else
105
+#ifdef _WIN32
106
+ PDC_check_for_resize( );
107
+ if( PDC_resize_occurred)
108
+ return( TRUE);
109
+#endif
110
if( WINDOWS_VERSION_OF_KBHIT( ))
111
{
112
rval = TRUE;
0 commit comments