Преглед на файлове

Fix ivar value display in FLEXObjectExplorerViewController.

Everything has been showing nil since 9006b194cd6b
Ryan Olson преди 12 години
родител
ревизия
b04a5fdf4e
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      Classes/Object Explorers/FLEXObjectExplorerViewController.m

+ 1 - 1
Classes/Object Explorers/FLEXObjectExplorerViewController.m

@@ -353,7 +353,7 @@ static const NSInteger kFLEXObjectExplorerScopeIncludeInheritanceIndex = 1;
 - (id)valueForIvarAtIndex:(NSInteger)index
 {
     id value = nil;
-    if (![self canHaveInstanceState]) {
+    if ([self canHaveInstanceState]) {
         FLEXIvarBox *ivarBox = [self.filteredIvars objectAtIndex:index];
         value = [FLEXRuntimeUtility valueForIvar:ivarBox.ivar onObject:self.object];
     }