diff options
| author | Dirk Fauth | 2023-01-24 10:32:38 +0000 |
|---|---|---|
| committer | Dirk Fauth | 2023-01-24 10:32:38 +0000 |
| commit | 823b60ae3a1838f7631d627f6f485089e6ede46e (patch) | |
| tree | 59e103f243334d084458c743c4226939c5a42692 | |
| parent | 11654ecb229dae76a1b0743e5bfe6410c69bbc93 (diff) | |
| download | org.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.java | 4 |
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); } } |
