Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 211664 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/jface/dialogs/ErrorDialog.java (-1 / +2 lines)
Lines 649-655 Link Here
649
	 * @since 3.1
649
	 * @since 3.1
650
	 */
650
	 */
651
	protected boolean shouldShowDetailsButton() {
651
	protected boolean shouldShowDetailsButton() {
652
		return status.isMultiStatus() || status.getException() != null;
652
		return (status.isMultiStatus() && status.getChildren().length > 0)
653
				|| status.getException() != null;
653
	}
654
	}
654
655
655
	/**
656
	/**

Return to bug 211664