Subversion Repositories Kolibri OS

Rev

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

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