anon 9 months ago
parent
commit
a297a0f56d
2 changed files with 10 additions and 4 deletions
  1. +8
    -2
      src/display.c
  2. +2
    -2
      src/version.h

+ 8
- 2
src/display.c 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); }


+ 2
- 2
src/version.h 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 */

Loading…
Cancel
Save