Changeset 865
- Timestamp:
- 04/29/08 21:33:01 (5 months ago)
- Files:
-
- trunk/src/ui-menu.c (modified) (2 diffs)
- trunk/src/ui-menu.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/ui-menu.c
r864 r865 303 303 display_columns, 304 304 column_get_tag 305 };306 307 /* ================== IMPLICIT MENU FOR KEY SELECTION ================== */308 309 static void display_nothing(menu_type *menu, int cursor, int *top, region *loc)310 {311 }312 313 static int no_cursor(int row, int col, int n, int top, region *loc)314 {315 return -1;316 }317 318 static const menu_skin menu_skin_key_select =319 {320 no_cursor,321 display_nothing,322 NULL,323 305 }; 324 306 … … 848 830 case MN_SKIN_COLUMNS: 849 831 return &menu_skin_column; 850 851 case MN_SKIN_KEY_ONLY:852 return &menu_skin_key_select;853 832 } 854 833 trunk/src/ui-menu.h
r864 r865 154 154 { 155 155 MN_SKIN_SCROLL = 1, /**< Ordinary scrollable single-column list */ 156 MN_SKIN_COLUMNS = 2, /**< Multicolumn view */ 157 MN_SKIN_KEY_ONLY = 3, /**< No display */ 156 MN_SKIN_COLUMNS = 2 /**< Multicolumn view */ 158 157 } skin_id; 159 158
