QMenu missing add_action_action
jlgerber opened this issue · 2 comments
jlgerber commented
Missing ability to add an pointer to an existing QAction into the menu in order to reuse actions.
Riateche commented
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.
jlgerber commented
awesome. Thank you!