Action not showing in the menu

pcicconepciccone Posts: 661

Hi.
This issue surfaced before and it's back in 4.6.2: a custom action doesn't show in the menu.

Here is my code in the .h file:

class RE_LIB_ACCESS  Reality3Action : public DzAction {

  Q_OBJECT

public:

  /** Constructor **/
  Reality3Action();

  QString getActionGroup() const { return "Reality 3 Engine"; }
  QKeySequence  getDefaultAccel() const { 
  //  return Qt::SHIFT + Qt::ControlModifier + Qt::Key_L; 
    return(QKeySequence(Qt::SHIFT + Qt::ALT + Qt::CTRL + Qt::Key_L));
  }
  QString getDefaultMenuPath() const { return "&Render;"; }

protected:
  void executeAction();

}; 


Am I doing something wrong here? Any idea why the action would not show in the Render menu?

Thanks in advance.

Comments

  • rbtwhizrbtwhiz Posts: 2,171
    edited February 2014

    This is fixed in DAZ Studio 4.6.2.116.

    -Rob

    Post edited by rbtwhiz on
  • pcicconepciccone Posts: 661
    edited December 1969

    Good to know. Thanks.

Sign In or Register to comment.