Browse Source

Fix bug introduced in cb2e0789

Tanner Bennett 3 years ago
parent
commit
46c6dcb7e6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Classes/ObjectExplorers/Sections/Shortcuts/FLEXShortcutsSection.m

+ 2 - 2
Classes/ObjectExplorers/Sections/Shortcuts/FLEXShortcutsSection.m

@@ -369,8 +369,6 @@ typedef NSMutableDictionary<Class, NSMutableArray<id<FLEXRuntimeMetadata>> *> Re
                 [bucket addObjectsFromArray:items];
             }
         }
-        
-        [self reset];
     }
 }
 
@@ -472,6 +470,8 @@ typedef NSMutableDictionary<Class, NSMutableArray<id<FLEXRuntimeMetadata>> *> Re
             }];
             [self _register:items to:ivarBucket class:cls];
         }
+        
+        [self reset];
     };
 }