summaryrefslogtreecommitdiffstats
path: root/ui/qt/packet_list.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-26 17:44:17 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-26 17:44:17 +0000
commit2d78050fd56b8188aa5a65ad2667e301b60eea45 (patch)
treeb54d4adac6de0a196b8bb8a67b34fe186c21378f /ui/qt/packet_list.cpp
parentAdding upstream version 4.2.2. (diff)
downloadwireshark-2d78050fd56b8188aa5a65ad2667e301b60eea45.tar.xz
wireshark-2d78050fd56b8188aa5a65ad2667e301b60eea45.zip
Adding upstream version 4.2.4.upstream/4.2.4
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ui/qt/packet_list.cpp')
-rw-r--r--ui/qt/packet_list.cpp19
1 files changed, 18 insertions, 1 deletions
diff --git a/ui/qt/packet_list.cpp b/ui/qt/packet_list.cpp
index e74f151..a065eac 100644
--- a/ui/qt/packet_list.cpp
+++ b/ui/qt/packet_list.cpp
@@ -204,6 +204,7 @@ PacketList::PacketList(QWidget *parent) :
tail_at_end_(0),
columns_changed_(false),
set_column_visibility_(false),
+ set_style_sheet_(false),
frozen_current_row_(QModelIndex()),
frozen_selected_rows_(QModelIndexList()),
cur_history_(-1),
@@ -358,11 +359,27 @@ void PacketList::colorsChanged()
}
// Set the style sheet
+ set_style_sheet_ = true;
if(prefs.gui_packet_list_hover_style) {
setStyleSheet(active_style + inactive_style + hover_style);
} else {
setStyleSheet(active_style + inactive_style);
}
+ set_style_sheet_ = false;
+#if \
+ ( \
+ (QT_VERSION >= QT_VERSION_CHECK(6, 5, 4) && QT_VERSION < QT_VERSION_CHECK(6, 6, 0)) \
+ || (QT_VERSION >= QT_VERSION_CHECK(6, 6, 1)) \
+ )
+ // https://bugreports.qt.io/browse/QTBUG-122109
+ // Affects Qt 6.5.4 and later, 6.6.1 and later.
+ // When setting the style sheet, all visible sections are set
+ // to the new minimum DefaultSectionSize (even if it hasn't
+ // changed.) So make sure the new widths aren't saved to recent
+ // and then restore from recent.
+ applyRecentColumnWidths();
+ setColumnVisibility();
+#endif
}
QString PacketList::joinSummaryRow(QStringList col_parts, int row, SummaryCopyType type)
@@ -1786,7 +1803,7 @@ void PacketList::columnVisibilityTriggered()
void PacketList::sectionResized(int col, int, int new_width)
{
- if (isVisible() && !columns_changed_ && !set_column_visibility_ && new_width > 0) {
+ if (isVisible() && !columns_changed_ && !set_column_visibility_ && !set_style_sheet_ && new_width > 0) {
// Column 1 gets an invalid value (32 on macOS) when we're not yet
// visible.
//