From b07f5e6c4d5c5ff9e3f58b98565e548d1e2563a5 Mon Sep 17 00:00:00 2001 From: Neal Orman Date: Mon, 26 Oct 2009 17:14:12 +0000 Subject: EXT-1816 Wearable changes do not persist issue was in the isDirty() function - one case where images in the wearable get added caused the function to return FALSE when it should have returned TRUE. Now wearables that you change the images of will be detected as dirty and will save properly. Code reviewed by Bigpapi. --- indra/newview/llwearable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indra/newview/llwearable.cpp') diff --git a/indra/newview/llwearable.cpp b/indra/newview/llwearable.cpp index 3bbf4c2c47..3fe02088c4 100644 --- a/indra/newview/llwearable.cpp +++ b/indra/newview/llwearable.cpp @@ -544,7 +544,7 @@ BOOL LLWearable::isDirty() const else { // image found in current image list but not saved image list - return FALSE; + return TRUE; } } } -- cgit v1.2.3