Explorar el Código

Change “globals” toolbar item to “menu”

There’s a lot in this list now. It’s no longer just singletons and global state.
Ryan Olson hace 11 años
padre
commit
f65263d027

+ 1 - 1
Classes/Explorer Toolbar/FLEXExplorerToolbar.m

@@ -47,7 +47,7 @@
         [self.dragHandle addSubview:self.dragHandleImageView];
         
         UIImage *globalsIcon = [FLEXResources globeIcon];
-        self.globalsItem = [FLEXToolbarItem toolbarItemWithTitle:@"globals" image:globalsIcon];
+        self.globalsItem = [FLEXToolbarItem toolbarItemWithTitle:@"menu" image:globalsIcon];
         [self addSubview:self.globalsItem];
         [toolbarItems addObject:self.globalsItem];
         

+ 1 - 1
Classes/Global State Explorers/FLEXGlobalsTableViewController.m

@@ -183,7 +183,7 @@ typedef NS_ENUM(NSUInteger, FLEXGlobalsRow) {
 {
     self = [super initWithStyle:style];
     if (self) {
-        self.title = @"🌎  Global State";
+        self.title = @"💪  FLEX";
         _entries = [[[self class] defaultGlobalEntries] arrayByAddingObjectsFromArray:[FLEXManager sharedManager].userGlobalEntries];
     }
     return self;