forked from KolibriOS/kolibrios
Eolite 2.15.3: fixed bugs: with show device name and ram disk free space bar
git-svn-id: svn://kolibrios.org@4399 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
46a08803e3
commit
3ecc7bbaa0
@ -79,8 +79,8 @@
|
|||||||
|
|
||||||
enum {ONLY_SHOW, WITH_REDRAW, ONLY_OPEN}; //OpenDir
|
enum {ONLY_SHOW, WITH_REDRAW, ONLY_OPEN}; //OpenDir
|
||||||
|
|
||||||
#define TITLE "Eolite File Manager v2.15.2"
|
#define TITLE "Eolite File Manager v2.15.3"
|
||||||
#define ABOUT_TITLE "Eolite v2.15.2"
|
#define ABOUT_TITLE "Eolite v2.15.3"
|
||||||
dword col_padding, col_selec, col_lpanel;
|
dword col_padding, col_selec, col_lpanel;
|
||||||
|
|
||||||
int toolbar_buttons_x[7]={9,46,85,134,167,203};
|
int toolbar_buttons_x[7]={9,46,85,134,167,203};
|
||||||
@ -102,8 +102,8 @@ byte
|
|||||||
byte
|
byte
|
||||||
rename_active=0,
|
rename_active=0,
|
||||||
del_active=0,
|
del_active=0,
|
||||||
show_dev_name=0,
|
show_dev_name=1,
|
||||||
drw_ram_disk_space=1,
|
drw_ram_disk_space=0,
|
||||||
real_files_names_case=0,
|
real_files_names_case=0,
|
||||||
sort_num=2,
|
sort_num=2,
|
||||||
itdir;
|
itdir;
|
||||||
@ -654,7 +654,7 @@ void Open_Dir(dword dir_path, redraw){
|
|||||||
}
|
}
|
||||||
maxcount = sizeof(file_mas)/sizeof(dword)-1;
|
maxcount = sizeof(file_mas)/sizeof(dword)-1;
|
||||||
if (files.count>maxcount) files.count = maxcount;
|
if (files.count>maxcount) files.count = maxcount;
|
||||||
DrawRamDiskSpace();
|
if (drw_ram_disk_space) DrawRamDiskSpace();
|
||||||
}
|
}
|
||||||
if (files.count!=-1)
|
if (files.count!=-1)
|
||||||
{
|
{
|
||||||
|
@ -120,9 +120,8 @@ void SystemDiscsDraw()
|
|||||||
case 'r':
|
case 'r':
|
||||||
dev_icon=0;
|
dev_icon=0;
|
||||||
strcpy(#disc_name, "System ");
|
strcpy(#disc_name, "System ");
|
||||||
if (!drw_ram_disk_space)
|
if (drw_ram_disk_space)
|
||||||
break;
|
DrawRamDiskSpace();
|
||||||
DrawRamDiskSpace();
|
|
||||||
break;
|
break;
|
||||||
case 'c':
|
case 'c':
|
||||||
dev_icon=1;
|
dev_icon=1;
|
||||||
|
Loading…
Reference in New Issue
Block a user