/// <summary>
		/// Shows the box inspector.
		/// </summary>
		/// <param name="box">The <see cref="T:MacInspector.CustomBox"/> being displayed/edited.</param>
		public void ShowBoxInspector (CustomBox box)
		{
			// Save new properties and display box preference
			// editor
			InspectedProperties = box;
			PerformSegue ("BoxPrefsSegue", this);
		}
		/// <summary>
		/// Shows the box inspector.
		/// </summary>
		/// <param name="box">The <see cref="T:MacInspector.CustomBox"/> being displayed/edited.</param>
		public void ShowBoxInspector (CustomBox box)
		{
			// Are we on the Format inspector?
			if (InspectorPanelID != 0) return;

			// Show Box Inspector
			InspectorController.ShowBoxInspector (box);
		}