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:
parent
d8361893bf
commit
bef52e225a
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue