在特定 if 子句中调用时 QMenu::addAction 不起作用
我遇到了一个非常奇怪的问题:
if( currentWidgetType_m == WidgetTypesMap ) {
qDebug() << "Here we are!";
optionsMenu_mp->addAction( tr( "Change visibility" ),
this, SLOT( VisibleItemClicked() ) );
optionsMenu_mp->addSeparator();
}
optionsMenu_mp->addAction( tr( "Change statistics" ),
this, SLOT( StatisticsItemClicked() ) );
optionsMenu_mp->addAction( tr( "Change view" ),
this, SLOT( ViewItemClicked() ) );
在这种情况下,条件为true,并且调试消息显示在输出中,但“更改可见性”操作不会出现在菜单中。
有什么想法可能导致这种情况吗?
此致
I encountered a very strange problem:
if( currentWidgetType_m == WidgetTypesMap ) {
qDebug() << "Here we are!";
optionsMenu_mp->addAction( tr( "Change visibility" ),
this, SLOT( VisibleItemClicked() ) );
optionsMenu_mp->addSeparator();
}
optionsMenu_mp->addAction( tr( "Change statistics" ),
this, SLOT( StatisticsItemClicked() ) );
optionsMenu_mp->addAction( tr( "Change view" ),
this, SLOT( ViewItemClicked() ) );
The condition is true in this case and the debug message shows in the output, but the "Change visibility" action does not appear in the menu.
Any ideas what might be causing this?
Best regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该问题是由 QMenu 未更新引起的。我通过重新创建保存 QMenu 的 QAction 解决了这个问题。
The problem was caused by the QMenu not updating. I solved the problem by recreating the QAction that held the QMenu.