Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2012-01-23 15:58:54 +0000
committerDani Megert2012-01-23 15:59:26 +0000
commit404b1a732b3f7dac7776d9c6ac7b14cf77cc02bb (patch)
tree77424089e82807d0567785837f17ccbb5d22ff68
parent2950f3b6ea5816ee027b081bddb27f7c24b54b4c (diff)
downloadeclipse.platform.text-404b1a732b3f7dac7776d9c6ac7b14cf77cc02bb.tar.gz
eclipse.platform.text-404b1a732b3f7dac7776d9c6ac7b14cf77cc02bb.tar.xz
eclipse.platform.text-404b1a732b3f7dac7776d9c6ac7b14cf77cc02bb.zip
Fixed bug 211990: Restore Defaults button does not work properly forv20120123-1559
Quick Diff Preferences
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/QuickDiffConfigurationBlock.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/QuickDiffConfigurationBlock.java b/org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/QuickDiffConfigurationBlock.java
index bb2e540237a..a8944b8690c 100644
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/QuickDiffConfigurationBlock.java
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/QuickDiffConfigurationBlock.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2009 IBM Corporation and others.
+ * Copyright (c) 2000, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -418,6 +418,7 @@ class QuickDiffConfigurationBlock implements IPreferenceConfigurationBlock {
public void performDefaults() {
initializeFields();
updateProviderList();
+ updateEnablement();
}
private void updateQuickDiffControls() {

Back to the top