Skip to content

Commit a27dd3f

Browse files
authored
Clarify tooltip: setting takes effect on next build, not requiring Clean
The preference is applied to the live workspace immediately via ws.setProperty(), so changes take effect on the next build without requiring a clean.
1 parent 711b213 commit a27dd3f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bndtools.core/src/bndtools/preferences/ui/BndBuildPreferencePage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ protected Control createContents(Composite parent) {
5656
cmbRebuildPolicy.setItems("Always rebuild", "API-based (skip if API unchanged)");
5757
cmbRebuildPolicy.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
5858
cmbRebuildPolicy.setToolTipText(
59-
"Controls when Eclipse triggers rebuilds: Always rebuild on any change, or skip rebuilds when only internal (non-API) changes are detected. A full workspace build (Project > Clean...) is required for this setting to take effect.");
59+
"'Always rebuild' triggers a rebuild on every change. 'API-based' skips rebuilds when only non-API changes are detected. Changes take effect on the next build.");
6060
lblRebuildPolicy.setToolTipText(cmbRebuildPolicy.getToolTipText());
6161

6262
// Load Data

0 commit comments

Comments
 (0)