Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • popwin.c

    rf449096 r0881cdd  
    2828  popwin = newwin(pw->lines-2, pw->cols-2, startline+1, startcol+1);
    2929  pw->poppanel = new_panel(popwin);
    30  
    31   meta(popwin,TRUE);
    32   nodelay(popwin, 1);
    33   keypad(popwin, TRUE);
    3430
    3531  werase(popwin);
     
    6864  pw->active=0;
    6965  owl_global_set_needrefresh(&g);
    70   owl_mainwin_redisplay(owl_global_get_mainwin(&g));
    71   owl_function_full_redisplay();
    7266  return(0);
    7367}
     
    7569int owl_popwin_is_active(const owl_popwin *pw)
    7670{
    77   if (pw->active==1) return(1);
    78   return(0);
     71  return pw->active;
    7972}
    8073
Note: See TracChangeset for help on using the changeset viewer.