.
This commit is contained in:
parent
046e3a75f7
commit
a297a0f56d
@ -91,8 +91,8 @@ extern const char tooltip_wresult[];
|
|||||||
WINDOW *winput;
|
WINDOW *winput;
|
||||||
WINDOW *wmode;
|
WINDOW *wmode;
|
||||||
WINDOW *wresult;
|
WINDOW *wresult;
|
||||||
WINDOW *whelp;
|
|
||||||
/* Non-Selectable windows */
|
/* Non-Selectable windows */
|
||||||
|
WINDOW *whelp;
|
||||||
WINDOW *wtooltip;
|
WINDOW *wtooltip;
|
||||||
WINDOW *wcase;
|
WINDOW *wcase;
|
||||||
/* Selected window pointer */
|
/* Selected window pointer */
|
||||||
@ -797,10 +797,16 @@ void display(void) {
|
|||||||
if(window_change == CH_HELP) {
|
if(window_change == CH_HELP) {
|
||||||
display_frame(true);
|
display_frame(true);
|
||||||
display_help();
|
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
|
/* Do not display over the help msg and
|
||||||
* rely on setting CH_ALL for the next display
|
* rely on setting CH_ALL for the next display
|
||||||
*/
|
*/
|
||||||
window_change = CH_ALL;
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(window_change == CH_ALL) { display_frame(false); }
|
if(window_change == CH_ALL) { display_frame(false); }
|
||||||
|
@ -39,7 +39,7 @@
|
|||||||
#ifndef CSCOPE_VERSION_H
|
#ifndef CSCOPE_VERSION_H
|
||||||
#define CSCOPE_VERSION_H
|
#define CSCOPE_VERSION_H
|
||||||
|
|
||||||
#define FILEVERSION 15 /* Initial Open Source and Linux Port */
|
#define FILEVERSION 16 /* Initial Open Source and Linux Port */
|
||||||
#define FIXVERSION ".9" /* feature and bug fix version */
|
#define FIXVERSION ".0" /* feature and bug fix version */
|
||||||
|
|
||||||
#endif /* CSCOPE_VERSION_H */
|
#endif /* CSCOPE_VERSION_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user