Author: thomasobrien95
Date: Tue May  5 13:51:51 2009
New Revision: 3040

Modified:
   trunk/src/ca/sqlpower/architect/swingui/olap/OLAPContextMenuFactory.java

Log:
Added the CreateLevelAction to the right click menu when right clicking
on a hierarchy. The next thing to fix is right clicking on a hierarchy
in the playpen gives the dimension pop-up.

Modified: trunk/src/ca/sqlpower/architect/swingui/olap/OLAPContextMenuFactory.java
==============================================================================
--- trunk/src/ca/sqlpower/architect/swingui/olap/OLAPContextMenuFactory.java (original) +++ trunk/src/ca/sqlpower/architect/swingui/olap/OLAPContextMenuFactory.java Tue May 5 13:51:51 2009
@@ -102,6 +102,7 @@
m.add(new EditMeasureAction(session, (Measure) obj, oSession.getOlapPlayPen()));
         } else if (obj instanceof Hierarchy) {
m.add(new EditHierarchyAction(session, (Hierarchy) obj, oSession.getOlapPlayPen()));
+            m.add(oSession.getCreateLevelAction());
         } else if (obj instanceof Level) {
m.add(new EditLevelAction(session, (Level) obj, oSession.getOlapPlayPen()));
         }

Reply via email to