From 542501a85a6e189035a23ac96f679fbfe25b8513 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 14 Sep 2012 15:13:51 +0000 Subject: [PATCH] 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 --- src/bin/e_config.c | 1 + src/bin/e_config.h | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/bin/e_config.c b/src/bin/e_config.c index 50076e7e8..2a54d473f 100644 --- a/src/bin/e_config.c +++ b/src/bin/e_config.c @@ -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); diff --git a/src/bin/e_config.h b/src/bin/e_config.h index 37ee4a51a..d90cfd02b 100644 --- a/src/bin/e_config.h +++ b/src/bin/e_config.h @@ -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 {