Search code examples
javaeclipseswteclipse-rcprcp

How to remove "restore defaults" and "apply" button in custom RCP Preference Page


When creating a preference page in RCP, e.g. something like:

public class MyPreferencePage extends org.eclipse.jface.preference.PreferencePage  implements IWorkbenchPreferencePage

how can I remove the "Restore default values" and "Apply" buttons which get added by default. Using

this.getDefaultsButton().setVisible(false);
this.getApplyButton().setVisible(false);

results in an error.


Solution

  • Call PreferencePage.noDefaultAndApplyButton() before your control is created.