Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Lorenzo2017-06-30 09:22:02 +0000
committervincent lorenzo2017-06-30 11:01:49 +0000
commit0cb36848232f0a9878fd415b200a787fe6c10845 (patch)
tree82534af0ee1603b18ad95186b30cf53744f558b6 /plugins/infra
parent737eddd9e51ba820d2e6afce4392f41425c77c80 (diff)
downloadorg.eclipse.papyrus-0cb36848232f0a9878fd415b200a787fe6c10845.tar.gz
org.eclipse.papyrus-0cb36848232f0a9878fd415b200a787fe6c10845.tar.xz
org.eclipse.papyrus-0cb36848232f0a9878fd415b200a787fe6c10845.zip
Bug 519014 - [Table][Matrix] Undo/Redo after creating a column filter doesn't update the column contents
Change-Id: I62e486a7af5614aebdbf4024605f5e2ccc894010 Signed-off-by: Vincent Lorenzo <vincent.lorenzo@cea.fr>
Diffstat (limited to 'plugins/infra')
-rwxr-xr-xplugins/infra/nattable/org.eclipse.papyrus.infra.emf.nattable/src/org/eclipse/papyrus/infra/emf/nattable/manager/axis/EObjectColumnMatrixAxisManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/infra/nattable/org.eclipse.papyrus.infra.emf.nattable/src/org/eclipse/papyrus/infra/emf/nattable/manager/axis/EObjectColumnMatrixAxisManager.java b/plugins/infra/nattable/org.eclipse.papyrus.infra.emf.nattable/src/org/eclipse/papyrus/infra/emf/nattable/manager/axis/EObjectColumnMatrixAxisManager.java
index 5f4321efc3c..f5ec2eb07a5 100755
--- a/plugins/infra/nattable/org.eclipse.papyrus.infra.emf.nattable/src/org/eclipse/papyrus/infra/emf/nattable/manager/axis/EObjectColumnMatrixAxisManager.java
+++ b/plugins/infra/nattable/org.eclipse.papyrus.infra.emf.nattable/src/org/eclipse/papyrus/infra/emf/nattable/manager/axis/EObjectColumnMatrixAxisManager.java
@@ -95,7 +95,7 @@ public class EObjectColumnMatrixAxisManager extends AbstractSynchronizedOnEStruc
private Adapter tableConfigurationChangesListener = new AdapterImpl() {
public void notifyChanged(final Notification msg) {
- if (msg.isReset() || msg.isTouch()) {
+ if (msg.isTouch()) {
return;
}
final Object listenFeature = msg.getFeature();

Back to the top