Subversion Repositories Kolibri OS

Rev

Rev 6646 | Rev 6678 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6646 Rev 6649
Line 572... Line 572...
572
{
572
{
573
	char status_bar_str[80];
573
	char status_bar_str[80];
574
	int go_up_folder_exists=0;
574
	int go_up_folder_exists=0;
575
	if (!show_status_bar) return;
575
	if (!show_status_bar) return;
576
	if (files.count>0) && (strcmp(file_mas[0]*304+buf+72,"..")==0) go_up_folder_exists=1;
576
	if (files.count>0) && (strcmp(file_mas[0]*304+buf+72,"..")==0) go_up_folder_exists=1;
577
	DrawBar(1, Form.cheight - status_bar_h-1, Form.cwidth-2,  status_bar_h, system.color.work);
577
	DrawBar(1, Form.cheight - status_bar_h-1, Form.cwidth-2,  status_bar_h, col_work);
578
	sprintf(#status_bar_str, STATUS_STR, files.count-go_up_folder_exists, count_dir-go_up_folder_exists, files.count-count_dir, selected_count);
578
	sprintf(#status_bar_str, STATUS_STR, files.count-go_up_folder_exists, count_dir-go_up_folder_exists, files.count-count_dir, selected_count);
579
	WriteText(6,Form.cheight - 13,0x80,0x000000,#status_bar_str);
579
	WriteText(6,Form.cheight - 13,0x80,0x000000,#status_bar_str);
580
}
580
}
Line 581... Line 581...
581
 
581