Qt: Redraw the packet list when a column is resized.

...otherwise the packet list and header columns don't match until
the next redraw.

Change-Id: Ice9c17c93badec93839be7c100ca27d8dc493daa
Reviewed-on: https://code.wireshark.org/review/7536
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Gerald Combs 2015-03-04 18:08:35 -08:00
parent 0a4f93ab2b
commit ce3ec6a6f7
1 changed files with 1 additions and 0 deletions

View File

@ -1159,6 +1159,7 @@ void PacketList::sectionResized(int, int, int)
// our doing. Either way this catches that and fixes it.
if (isVisible()) {
column_state_ = header()->saveState();
redrawVisiblePackets();
}
}