Test fix for issue #167

This commit is contained in:
Dave Davenport 2015-05-21 23:53:28 +02:00
parent 09e4a64780
commit 0e7009bcad
2 changed files with 14 additions and 6 deletions

View File

@ -1304,6 +1304,14 @@ MenuReturn menu ( char **lines, unsigned int num_lines, char **input, char *prom
} while ( XCheckTypedEvent ( display, KeyPress, &ev ) ); } while ( XCheckTypedEvent ( display, KeyPress, &ev ) );
} }
} }
// Wait for final release?
{
XEvent ev;
do {
XNextEvent ( display, &ev );
} while ( ev.type != KeyRelease );
}
// Update input string. // Update input string.
g_free ( *input ); g_free ( *input );