Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Lorenzo2015-05-22 07:46:06 +0000
committerVincent Lorenzo2015-05-22 09:30:51 +0000
commita9fce11560f42a1ccff969d4aa6169f3ad356e5a (patch)
tree27012fa592b915341cc8042bad2a9224dcee688b /plugins
parent69fa8bb57afcfb3fd2c140a2d7a3df2d2691d6c6 (diff)
downloadorg.eclipse.papyrus-a9fce11560f42a1ccff969d4aa6169f3ad356e5a.tar.gz
org.eclipse.papyrus-a9fce11560f42a1ccff969d4aa6169f3ad356e5a.tar.xz
org.eclipse.papyrus-a9fce11560f42a1ccff969d4aa6169f3ad356e5a.zip
467968: [Tree Table] Show Hide categories menu is not displayed after changing categories
Diffstat (limited to 'plugins')
-rw-r--r--plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/utils/FillingConfigurationUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/utils/FillingConfigurationUtils.java b/plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/utils/FillingConfigurationUtils.java
index 1faf05d577a..9d8ce16ceb9 100644
--- a/plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/utils/FillingConfigurationUtils.java
+++ b/plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/utils/FillingConfigurationUtils.java
@@ -137,7 +137,7 @@ public class FillingConfigurationUtils {
Assert.isTrue(!table.isInvertAxis(), INVERT_AXIS_CASE_NOT_YET_MANAGED_FOR_TREE_TABLE);
List<TreeFillingConfiguration> confs = new ArrayList<TreeFillingConfiguration>();
LocalTableHeaderAxisConfiguration local = table.getLocalRowHeaderAxisConfiguration();
- if (local != null) {
+ if (local != null && !local.getAxisManagerConfigurations().isEmpty()) { //bug 467968: [Tree Table] Show Hide categories menu is not displayed after changing categories
for (AxisManagerConfiguration currentRep : local.getAxisManagerConfigurations()) {
for (final IAxisConfiguration current : currentRep.getLocalSpecificConfigurations()) {
if (current instanceof TreeFillingConfiguration) {

Back to the top