rust-qt/ritual

QMenu missing add_action_action

jlgerber opened this issue · 2 comments

Missing ability to add an pointer to an existing QAction into the menu in order to reuse actions.

It's here. It's just called add_action. The naming is different because this method is inherited from QWidget and isn't overloaded for QWidget. Only QMenu's methods are overloaded, so only they have disambiguated names.

awesome. Thank you!