Eolite 1.91 fixed bugs with buttons copy and cut

git-svn-id: svn://kolibrios.org@3846 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Serhii Sakhno 2013-08-03 13:11:35 +00:00
parent 28d79ed03f
commit 57d92e4a1f

View File

@ -22,8 +22,8 @@
enum {ONLY_SHOW, WITH_REDRAW, ONLY_OPEN}; //OpenDir enum {ONLY_SHOW, WITH_REDRAW, ONLY_OPEN}; //OpenDir
#define TITLE "Eolite File Manager v1.90" #define TITLE "Eolite File Manager v1.91"
#define ABOUT_TITLE "Eolite v1.90" #define ABOUT_TITLE "Eolite v1.91"
dword col_work = 0xE4DFE1; dword col_work = 0xE4DFE1;
dword col_border = 0x9098B0; //A0A0B8; //0x819FC5; dword col_border = 0x9098B0; //A0A0B8; //0x819FC5;
dword col_padding = 0xC8C9C9; dword col_padding = 0xC8C9C9;
@ -218,10 +218,10 @@ void main()
Dir_Up(); Dir_Up();
break; break;
case 24: //cut case 24: //cut
Copy(#file_path, NOCUT); Copy(#file_path, CUT);
break; break;
case 25: //copy case 25: //copy
Copy(#file_path, CUT); Copy(#file_path, NOCUT);
break; break;
case 26: //paste case 26: //paste
CreateThread(#Paste,#copy_stak); CreateThread(#Paste,#copy_stak);