Changeset 2385 for neercs/trunk/src
- Timestamp:
- Jun 14, 2008, 12:46:32 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
neercs/trunk/src/main.c
r2384 r2385 352 352 screen_list->screen[i]->w + 2, 353 353 screen_list->screen[i]->h + 2); 354 if(screen_list->screen[i]->title)355 cucul_printf(cv,356 screen_list->screen[i]->x,357 screen_list->screen[i]->y - 1,358 " %.*s ",359 screen_list->screen[i]->w - 3,360 screen_list->screen[i]->title);361 354 } 362 355 … … 384 377 screen_list->screen[pty]->h + 2); 385 378 386 if(screen_list->screen[pty]->title) 379 cucul_set_color_ansi(cv, CUCUL_DEFAULT, CUCUL_BLACK); 380 for(i = screen_list->count - 1; i >=0; i--) 381 { 382 if(screen_list->screen[i]->title) 387 383 cucul_printf(cv, 388 screen_list->screen[ pty]->x,389 screen_list->screen[ pty]->y - 1,384 screen_list->screen[i]->x, 385 screen_list->screen[i]->y - 1, 390 386 " %.*s ", 391 screen_list->screen[pty]->w - 3, 392 screen_list->screen[pty]->title); 387 screen_list->screen[i]->w - 3, 388 screen_list->screen[i]->title); 389 390 } 393 391 394 392 cucul_gotoxy(cv,
Note: See TracChangeset
for help on using the changeset viewer.