Eolite 2.36: small fixes

git-svn-id: svn://kolibrios.org@5149 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2014-10-29 21:59:44 +00:00
parent 75d63bdb63
commit 21d93b27cd
3 changed files with 5 additions and 5 deletions

View File

@ -82,8 +82,8 @@
enum {ONLY_SHOW, WITH_REDRAW, ONLY_OPEN}; //OpenDir
#define TITLE "Eolite File Manager v2.35"
#define ABOUT_TITLE "Eolite v2.35"
#define TITLE "Eolite File Manager v2.36"
#define ABOUT_TITLE "Eolite v2.36"
dword col_padding, col_selec, col_lpanel;
int toolbar_buttons_x[7]={9,46,85,134,167,203};

View File

@ -58,7 +58,7 @@ void about_dialog()
#endif
WriteText(39,130,0x80,0,"Leency & Veliant");
WriteText(45,140,0x80,0,"KolibriOS Team");
WriteText(61,150,0x80,0,"2008-2013");
WriteText(61,150,0x80,0,"2008-2014");
#ifdef LANG_RUS
WriteText(19,170,0x80,0,INTRO_TEXT_3);
#else

View File

@ -157,7 +157,7 @@ void SystemDiscsDraw()
}
strcat(#disc_name, #dev_name);
if (show_dev_name) WriteText(45,i*16+79,0x80,0,#disc_name); else WriteText(45,i*16+79,0x80,0,#dev_name);
_PutImage(21,i*16+76, 14,13, dev_icon*14*13*3+#devices);
_PutImage(23,i*16+76, 14,13, dev_icon*14*13*3+#devices);
}
}
@ -171,7 +171,7 @@ void ActionsDraw()
DefineButton(17,actions_y,159,lineh,actions[i*3]+BT_HIDE,0xE4DFE1);
WriteText(45,actions_y+4,0x80,0,actions[i*3+1]);
WriteText(-strlen(actions[i*3+2])*6+170,actions_y+4,0x80,0x999999,actions[i*3+2]);
_PutImage(21,actions_y+2, 14,13, i*14*13*3+#factions);
_PutImage(23,actions_y+2, 14,13, i*14*13*3+#factions);
}
}