Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 8015 → Rev 8020

/programs/cmm/eolite/Eolite.c
3,8 → 3,8
 
// 70.5 - get volume info and label
 
#define TITLE "Eolite File Manager 4.46c"
#define ABOUT_TITLE "EOLITE 4.46c"
#define TITLE "Eolite File Manager 4.46d"
#define ABOUT_TITLE "EOLITE 4.46d"
 
#ifndef AUTOBUILD
#include "lang.h--"
172,6 → 172,7
param[strrchr(#param, '/')-1] = '\0';
strcpy(#path, #param + 3);
properties_dialog();
ExitProcess();
return;
case 'd':
strcpy(#file_path, #param + 3);
178,11 → 179,13
itdir = dir_exists(#file_path);
DisplayOperationForm(DELETE_FLAG);
DeleteSingleElement();
ExitProcess();
return;
case 'v':
cut_active = param[2] - '0';
strcpy(#path, #param + 4);
PasteThread();
ExitProcess();
return;
}
}
/programs/cmm/eolite/include/menu.h
140,15 → 140,13
text = #file_actions;
active_menu = MENU_FILE;
}
open_lmenu(mouse.x+Form.left+5, mouse.y+Form.top+3
+skin_height, MENU_ALIGN_TOP_LEFT, NULL, text);
open_lmenu(mouse.x, mouse.y+3, MENU_TOP_LEFT, NULL, text);
}
 
void EventShowBurgerMenu()
{
active_menu = MENU_BURGER;
open_lmenu(Form.width-10+Form.left, 35+Form.top+skin_height,
MENU_ALIGN_TOP_RIGHT, NULL, #burger_menu_items);
open_lmenu(Form.cwidth-6, 35, MENU_TOP_RIGHT, NULL, #burger_menu_items);
}
 
bool GetMenuClick()