From b331eececb662b15e0b2a247f403fa92c8714b31 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 19 Jun 2012 10:24:09 +0000 Subject: [PATCH] only set remembered custom dir pan if we're using an instance that has custom dir enabled SVN revision: 72469 --- src/bin/e_fm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_fm.c b/src/bin/e_fm.c index 67a02c29e..9d464c254 100644 --- a/src/bin/e_fm.c +++ b/src/bin/e_fm.c @@ -7271,7 +7271,7 @@ _e_fm2_cb_resize_job(void *data) sd->pw = sd->w; sd->ph = sd->h; - if ((sd->max.w > 0) && (sd->max.h > 0) && (sd->w > 0) && (sd->h > 0)) + if ((sd->max.w > 0) && (sd->max.h > 0) && (sd->w > 0) && (sd->h > 0) && (sd->view_flags & E_FM2_VIEW_SAVE_DIR_CUSTOM)) { E_Fm2_Custom_File *cf = e_fm2_custom_file_get(sd->realpath); if ((cf) && (cf->dir))