diff --git a/drkonqi/bugzillaintegration/reportassistantpages_base.cpp b/drkonqi/bugzillaintegration/reportassistantpages_base.cpp index 4ade5e142..368b422a1 100644 --- a/drkonqi/bugzillaintegration/reportassistantpages_base.cpp +++ b/drkonqi/bugzillaintegration/reportassistantpages_base.cpp @@ -138,6 +138,7 @@ BugAwarenessPage::BugAwarenessPage(ReportAssistantDialog * parent) connect(ui.m_rememberGroup, static_cast(&QButtonGroup::buttonClicked), this, &BugAwarenessPage::updateCheckBoxes); ui.m_appSpecificDetailsExamples->setVisible(reportInterface()->appDetailsExamples()->hasExamples()); + ui.m_appSpecificDetailsExamples->setContextMenuPolicy(Qt::NoContextMenu); connect(ui.m_appSpecificDetailsExamples, &QLabel::linkActivated, this, &BugAwarenessPage::showApplicationDetailsExamples); } diff --git a/drkonqi/bugzillaintegration/reportassistantpages_bugzilla_duplicates.cpp b/drkonqi/bugzillaintegration/reportassistantpages_bugzilla_duplicates.cpp index 2c673812d..2d2605a1e 100644 --- a/drkonqi/bugzillaintegration/reportassistantpages_bugzilla_duplicates.cpp +++ b/drkonqi/bugzillaintegration/reportassistantpages_bugzilla_duplicates.cpp @@ -122,8 +122,10 @@ BugzillaDuplicatesPage::BugzillaDuplicatesPage(ReportAssistantDialog * parent): ui.m_attachToReportIcon->setFixedSize(16,16); ui.m_attachToReportIcon->setVisible(false); ui.m_attachToReportLabel->setVisible(false); + ui.m_attachToReportLabel->setContextMenuPolicy(Qt::NoContextMenu); connect(ui.m_attachToReportLabel, SIGNAL(linkActivated(QString)), this, SLOT(cancelAttachToBugReport())); + ui.information->setContextMenuPolicy(Qt::NoContextMenu); connect(ui.information, SIGNAL(linkActivated(QString)), this, SLOT(informationClicked(QString))); showDuplicatesPanel(false); }