Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDirk Fauth2022-06-21 06:59:03 +0000
committerDirk Fauth2022-06-21 06:59:03 +0000
commite8c1b79dda20cda725647731775323c87e65cd6f (patch)
treee7ccd641ec8152286745dde6ee9f2fa8beca5e17
parent33b78c3a31ea524a048681fef9095e55ccfbd121 (diff)
downloadorg.eclipse.nebula.widgets.nattable-e8c1b79dda20cda725647731775323c87e65cd6f.tar.gz
org.eclipse.nebula.widgets.nattable-e8c1b79dda20cda725647731775323c87e65cd6f.tar.xz
org.eclipse.nebula.widgets.nattable-e8c1b79dda20cda725647731775323c87e65cd6f.zip
Bug 580197 - Given constructor arguments ignored
Signed-off-by: Dirk Fauth <dirk.fauth@googlemail.com> Change-Id: Ic1f31bb0a0f9f60910b3cf225c20f441b7ac7303
-rw-r--r--org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/tooltip/NatTableContentTooltip.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/tooltip/NatTableContentTooltip.java b/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/tooltip/NatTableContentTooltip.java
index 00fa0bb0..ddd5dee9 100644
--- a/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/tooltip/NatTableContentTooltip.java
+++ b/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/tooltip/NatTableContentTooltip.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2012, 2020 Original authors and others.
+ * Copyright (c) 2012, 2022 Original authors and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -90,7 +90,7 @@ public class NatTableContentTooltip extends DefaultToolTip {
* @since 1.6
*/
public NatTableContentTooltip(NatTable natTable, int style, boolean manualActivation, String... tooltipRegions) {
- super(natTable, ToolTip.NO_RECREATE, false);
+ super(natTable, style, manualActivation);
setPopupDelay(500);
setShift(new Point(10, 10));
activate();

Back to the top