This commit is contained in:
anon 2023-08-15 15:22:06 +02:00
parent 046e3a75f7
commit a297a0f56d
2 changed files with 10 additions and 4 deletions

View File

@ -91,8 +91,8 @@ extern const char tooltip_wresult[];
WINDOW *winput;
WINDOW *wmode;
WINDOW *wresult;
WINDOW *whelp;
/* Non-Selectable windows */
WINDOW *whelp;
WINDOW *wtooltip;
WINDOW *wcase;
/* Selected window pointer */
@ -797,10 +797,16 @@ void display(void) {
if(window_change == CH_HELP) {
display_frame(true);
display_help();
window_change = CH_ALL;
/* Since whelp is not Selectable,
* trigger the tooltip redisplay
* this way
*/
lstwin = NULL;
/* Do not display over the help msg and
* rely on setting CH_ALL for the next display
*/
window_change = CH_ALL;
return;
}
if(window_change == CH_ALL) { display_frame(false); }

View File

@ -39,7 +39,7 @@
#ifndef CSCOPE_VERSION_H
#define CSCOPE_VERSION_H
#define FILEVERSION 15 /* Initial Open Source and Linux Port */
#define FIXVERSION ".9" /* feature and bug fix version */
#define FILEVERSION 16 /* Initial Open Source and Linux Port */
#define FIXVERSION ".0" /* feature and bug fix version */
#endif /* CSCOPE_VERSION_H */