From 15cf818b1e63600c23d1e67cf1657f4844a95f40 Mon Sep 17 00:00:00 2001 From: Aparajita Fishman Date: Thu, 25 Apr 2013 19:03:10 -0400 Subject: [PATCH] Fixed: not enough space around status icon. --- Tools/XcodeCapp/XcodeCapp/AppController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/XcodeCapp/XcodeCapp/AppController.m b/Tools/XcodeCapp/XcodeCapp/AppController.m index f8530d750..111580847 100644 --- a/Tools/XcodeCapp/XcodeCapp/AppController.m +++ b/Tools/XcodeCapp/XcodeCapp/AppController.m @@ -63,7 +63,7 @@ AppController *SharedAppControllerInstance = nil; self.statusItem.menu = self.statusMenu; self.statusItem.image = self.iconInactive; self.statusItem.highlightMode = YES; - self.statusItem.length = self.iconInactive.size.width + 8; // Add some space around the icon + self.statusItem.length = self.iconInactive.size.width + 12; // Add some space around the icon self.statusMenu.delegate = self; self.helpTextView.textContainerInset = NSMakeSize(10.0, 10.0);