e_config has a new option that can be enabled to switch file moving to use the old behavior of cp->rm instead of the new mv behavior

SVN revision: 76675
This commit is contained in:
Mike Blumenkrantz 2012-09-14 15:13:51 +00:00
parent 80c6165036
commit 542501a85a
2 changed files with 4 additions and 2 deletions

View File

@ -853,6 +853,7 @@ e_config_init(void)
E_CONFIG_VAL(D, T, device_desktop, INT);
E_CONFIG_VAL(D, T, device_auto_mount, INT);
E_CONFIG_VAL(D, T, device_auto_open, INT);
E_CONFIG_VAL(D, T, filemanager_copy, UCHAR);
E_CONFIG_VAL(D, T, border_keyboard.timeout, DOUBLE);
E_CONFIG_VAL(D, T, border_keyboard.move.dx, UCHAR);

View File

@ -37,7 +37,7 @@ typedef struct _E_Event_Config_Icon_Theme E_Event_Config_Icon_Theme;
/* increment this whenever a new set of config values are added but the users
* config doesn't need to be wiped - simply new values need to be put in
*/
#define E_CONFIG_FILE_GENERATION 0x0153
#define E_CONFIG_FILE_GENERATION 0x0154
#define E_CONFIG_FILE_VERSION ((E_CONFIG_FILE_EPOCH << 16) | E_CONFIG_FILE_GENERATION)
struct _E_Config
@ -264,7 +264,8 @@ struct _E_Config
int device_desktop; // GUI
int device_auto_mount; // GUI
int device_auto_open; // GUI
Efm_Mode device_detect_mode; /* not saved, display-only */
Efm_Mode device_detect_mode; /* not saved, display-only */
Eina_Bool filemanager_copy; // GUI
struct
{