aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt
diff options
context:
space:
mode:
authorNardi Ivan <nardi.ivan@gmail.com>2021-09-26 10:54:19 +0200
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-09-26 14:40:42 +0000
commit151cfe5823e0585003c72aa09c7e52459657fc23 (patch)
treebe37de978266a41fb02fd882d7a0257a7ce815e8 /ui/qt
parent7a283b0f363c2a5780a06850c5243c63fd9831ea (diff)
QUIC: disable "Follow TLS stream" for QUIC session
Close #17602
Diffstat (limited to 'ui/qt')
-rw-r--r--ui/qt/main_window_slots.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/main_window_slots.cpp b/ui/qt/main_window_slots.cpp
index b8c2be36b8..a6f313d94c 100644
--- a/ui/qt/main_window_slots.cpp
+++ b/ui/qt/main_window_slots.cpp
@@ -1297,7 +1297,7 @@ void MainWindow::setMenusForSelectedPacket()
main_ui_->actionAnalyzeFollowTCPStream->setEnabled(is_tcp);
main_ui_->actionAnalyzeFollowUDPStream->setEnabled(is_udp);
main_ui_->actionAnalyzeFollowDCCPStream->setEnabled(is_dccp);
- main_ui_->actionAnalyzeFollowTLSStream->setEnabled(is_tls);
+ main_ui_->actionAnalyzeFollowTLSStream->setEnabled(is_tls && !is_quic);
main_ui_->actionAnalyzeFollowHTTPStream->setEnabled(is_http);
main_ui_->actionAnalyzeFollowHTTP2Stream->setEnabled(is_http2);
main_ui_->actionAnalyzeFollowQUICStream->setEnabled(is_quic);