aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/rtp_stream_dialog.cpp
diff options
context:
space:
mode:
authorJirka Novak <j.novak@netsystem.cz>2021-04-10 18:33:09 +0200
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-04-11 06:41:17 +0000
commitc8c210a7de98cd3ee367aba6de85c56b734a73fa (patch)
tree2c56ff04bbf91b3e3c7f1114cdf287f053166928 /ui/qt/rtp_stream_dialog.cpp
parentd06287ec2e1e54dff3572d426252eaeab4876b10 (diff)
VoIP dialogs: Cleanups and clarifications based on work on WSUG
Diffstat (limited to 'ui/qt/rtp_stream_dialog.cpp')
-rw-r--r--ui/qt/rtp_stream_dialog.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/ui/qt/rtp_stream_dialog.cpp b/ui/qt/rtp_stream_dialog.cpp
index 7893f0c455..e3cb59963c 100644
--- a/ui/qt/rtp_stream_dialog.cpp
+++ b/ui/qt/rtp_stream_dialog.cpp
@@ -380,6 +380,8 @@ bool RtpStreamDialog::eventFilter(QObject *, QEvent *event)
// Ctrl+Shift+A
on_actionSelectNone_triggered();
return true;
+ } else if (keyEvent.modifiers() == Qt::NoModifier) {
+ on_actionAnalyze_triggered();
}
break;
default:
@@ -904,3 +906,8 @@ void RtpStreamDialog::invertSelection()
}
}
+void RtpStreamDialog::on_actionAnalyze_triggered()
+{
+ RtpStreamDialog::rtpAnalysisAdd();
+}
+