aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChuck Craft <bubbasnmp@gmail.com>2021-12-26 19:50:14 -0600
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-12-28 20:39:11 +0000
commit9a9a754378830ef7e537d9a7088be4f08fcb4943 (patch)
tree5b0dc6b09861da1175bc5eb3bf0f8e5765698dea
parenta03f43645d072b7caaa9b204067095481137a2a0 (diff)
Qt: byteview mouse hover highlights not selects
-rw-r--r--docbook/wsug_src/WSUG_chapter_advanced.adoc2
-rw-r--r--docbook/wsug_src/WSUG_chapter_use.adoc8
-rw-r--r--ui/qt/widgets/byte_view_text.cpp2
3 files changed, 4 insertions, 8 deletions
diff --git a/docbook/wsug_src/WSUG_chapter_advanced.adoc b/docbook/wsug_src/WSUG_chapter_advanced.adoc
index 8c0a2c1664..a22fdceacd 100644
--- a/docbook/wsug_src/WSUG_chapter_advanced.adoc
+++ b/docbook/wsug_src/WSUG_chapter_advanced.adoc
@@ -984,7 +984,7 @@ defragmentation, etc).
For some of the network protocols Wireshark knows of, a mechanism is implemented
to find, decode and display these chunks of data. Wireshark will try to find the
corresponding packets of this chunk, and will show the combined data as
-additional pages in the “Packet Bytes” pane (for information about this pane.
+additional tabs in the “Packet Bytes” pane (for information about this pane.
See <<ChUsePacketBytesPaneSection>>).
[[ChAdvWiresharkBytesPaneTabs]]
diff --git a/docbook/wsug_src/WSUG_chapter_use.adoc b/docbook/wsug_src/WSUG_chapter_use.adoc
index e4050110e2..a9055a042d 100644
--- a/docbook/wsug_src/WSUG_chapter_use.adoc
+++ b/docbook/wsug_src/WSUG_chapter_use.adoc
@@ -1054,7 +1054,7 @@ methods for deactivating the functionality:
* *Temporary* By holding down the Ctrl button while moving the mouse, the
highlighted field will not change
-* *Permanently* Using the context menu (right mouse click) the hover selection
+* *Permanently* Using the context menu (right mouse click) the hover highlighting
may be activated/deactivated. This setting is stored in the selected profile
__recent__ file.
@@ -1062,13 +1062,9 @@ methods for deactivating the functionality:
.The “Packet Bytes” pane with tabs
image::wsug_graphics/ws-bytes-pane-tabs.png[{screenshot-attrs}]
-Additional pages typically contain data reassembled from multiple packets or
+Additional tabs typically contain data reassembled from multiple packets or
decrypted data.
-The context menu (right mouse click) of the tab labels will show a list of all
-available pages. This can be helpful if the size in the pane is too small for
-all the tab labels.
-
[[ChUsePacketDiagramPaneSection]]
////
diff --git a/ui/qt/widgets/byte_view_text.cpp b/ui/qt/widgets/byte_view_text.cpp
index b447afba1b..8f44b4f2da 100644
--- a/ui/qt/widgets/byte_view_text.cpp
+++ b/ui/qt/widgets/byte_view_text.cpp
@@ -84,7 +84,7 @@ ByteViewText::~ByteViewText()
void ByteViewText::createContextMenu()
{
- action_allow_hover_selection_ = ctx_menu_.addAction(tr("Allow hover selection"));
+ action_allow_hover_selection_ = ctx_menu_.addAction(tr("Allow hover highlighting"));
action_allow_hover_selection_->setCheckable(true);
action_allow_hover_selection_->setChecked(true);
connect(action_allow_hover_selection_, &QAction::toggled, this, &ByteViewText::toggleHoverAllowed);