diff --git a/ChangeLog b/ChangeLog index bc7a44e..71a2be3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ git - ? - Removed reliance of dirfd() - Fixed non-void return in void delete_process() - Fixed several tiny memory leaks + - Return to previously opened directory on failed recalculation 1.5 - 2009-05-02 - Fixed incorrect apparent size on directory refresh diff --git a/src/calc.c b/src/calc.c index cceb9a9..fff2cd6 100644 --- a/src/calc.c +++ b/src/calc.c @@ -428,7 +428,7 @@ calc_fail: if(orig == NULL) return 1; else { - browse_init(NULL); + browse_init(orig); return 0; } }