Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDirk Fauth2023-01-24 10:32:38 +0000
committerDirk Fauth2023-01-24 10:32:38 +0000
commit823b60ae3a1838f7631d627f6f485089e6ede46e (patch)
tree59e103f243334d084458c743c4226939c5a42692
parent11654ecb229dae76a1b0743e5bfe6410c69bbc93 (diff)
downloadorg.eclipse.nebula.widgets.nattable-823b60ae3a1838f7631d627f6f485089e6ede46e.tar.gz
org.eclipse.nebula.widgets.nattable-823b60ae3a1838f7631d627f6f485089e6ede46e.tar.xz
org.eclipse.nebula.widgets.nattable-823b60ae3a1838f7631d627f6f485089e6ede46e.zip
Bug 581411 - ResetScalingAction resets structure
Signed-off-by: Dirk Fauth <dirk.fauth@googlemail.com> Change-Id: I01e51a9b944521339b1d40ce059bfe1b187c014e
-rw-r--r--org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/ui/scaling/ResetScalingAction.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/ui/scaling/ResetScalingAction.java b/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/ui/scaling/ResetScalingAction.java
index 947a9970..98d57041 100644
--- a/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/ui/scaling/ResetScalingAction.java
+++ b/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/ui/scaling/ResetScalingAction.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2020 Dirk Fauth and others.
+ * Copyright (c) 2020, 2023 Dirk Fauth and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -69,7 +69,7 @@ public class ResetScalingAction implements IKeyAction {
this.updater.accept(natTable.getConfigRegistry());
}
- natTable.refresh();
+ natTable.refresh(false);
}
}

Back to the top