1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Don't trigger listener when data hasn't changed

This commit is contained in:
David Dubrow 2011-02-28 20:58:11 +00:00
parent d8361893bf
commit bef52e225a

View file

@ -561,7 +561,8 @@ public abstract class CAbstractMainTab extends CLaunchConfigurationTab {
} catch (CoreException ce) {
LaunchUIPlugin.log(ce);
}
fProjText.setText(projectName);
if (!fProjText.getText().equals(projectName))
fProjText.setText(projectName);
updateBuildConfigCombo(configName);
}