mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-04 06:03:18 +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) {
|
} catch (CoreException ce) {
|
||||||
LaunchUIPlugin.log(ce);
|
LaunchUIPlugin.log(ce);
|
||||||
}
|
}
|
||||||
fProjText.setText(projectName);
|
if (!fProjText.getText().equals(projectName))
|
||||||
|
fProjText.setText(projectName);
|
||||||
updateBuildConfigCombo(configName);
|
updateBuildConfigCombo(configName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue