Changeset 2424

Show
Ignore:
Timestamp:
04/23/07 12:59:04 (2 years ago)
Author:
tg
Message:

• don't highlight the first char of every item

– yellow text on lightgrey background is just not visible

(at least on my laptop display, GNU screen inside uxterm)

– nearly all of them do not work as hotkeys anyway

• add the ctags file to the list of svn-ignored while here

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/tools/config

    • Property svn:ignore changed from
      conf
      info.mk
      lex.zconf.c
      lkc_defs.h
      mconf
      zconf.tab.c
      zconf.tab.h
      to
      conf
      info.mk
      lex.zconf.c
      lkc_defs.h
      mconf
      tags
      zconf.tab.c
      zconf.tab.h
  • trunk/freewrt/tools/config/checklist.c

    r1 r2424  
    4848        wprintw (win, "(%c)", status ? 'X' : ' '); 
    4949 
     50#if 0 
    5051    wattrset (win, selected ? tag_selected_attr : tag_attr); 
    5152    mvwaddch(win, choice, item_x, item[0]); 
    5253    wattrset (win, selected ? item_selected_attr : item_attr); 
    5354    waddstr (win, (char *)item+1); 
     55#else 
     56    wattrset (win, selected ? item_selected_attr : item_attr); 
     57    waddstr (win, item); 
     58#endif 
    5459    if (selected) { 
    5560        wmove (win, choice, check_x+1); 
  • trunk/freewrt/tools/config/menubox.c

    r1 r2424  
    8888    wattrset (win, selected ? item_selected_attr : item_attr); 
    8989    mvwaddstr (win, choice, item_x, menu_item); 
     90#if 0 
    9091    if (hotkey) { 
    9192        wattrset (win, selected ? tag_key_selected_attr : tag_key_attr); 
    9293        mvwaddch(win, choice, item_x+j, menu_item[j]); 
    9394    } 
     95#endif 
    9496    if (selected) { 
    9597        wmove (win, choice, item_x+1);