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

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 преди 11 години
родител
ревизия
f65263d027
променени са 2 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 1 1
      Classes/Explorer Toolbar/FLEXExplorerToolbar.m
  2. 1 1
      Classes/Global State Explorers/FLEXGlobalsTableViewController.m

+ 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;