Wireshark-commits: [Wireshark-commits] master-3.2 cfaa1bc: Qt: fix packet selection when modifiers
From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Mon, 25 Nov 2019 21:51:09 +0000
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=cfaa1bc31a6a718de6fddfe8832ccca2d0ace688
Submitter: "Peter Wu <peter@xxxxxxxxxxxxx>"
Changed: branch: master-3.2
Repository: wireshark

Commits:

cfaa1bc by Peter Wu (peter@xxxxxxxxxxxxx):

    Qt: fix packet selection when modifiers are pressed
    
    When the Conversation Shortcut (Ctrl-1) was pressed, the current packet
    suddenly became deselected. Similarly for Go to First Packet (Ctrl-Home)
    and Go To Next Packet (Ctrl-.).
    
    Changing the selection mode to ExtendedSelection has as side-effect that
    setCurrentIndex is affected by modifiers such as Ctrl and Shift. Since
    Ctrl acts as a toggle, the current selection becomes empty and no
    packets are selected. Fix this by explicitly requesting the selection to
    be replaced.
    
    Tested as follows:
    
     1. wireshark -r test/captures/dhcp.pcap
     2. Select packet 3.
     3. Press Ctrl-1, Ctrl-2. (Colors change, the packet remains selected.)
     4. Press Ctrl-Home, Ctrl-Down, Ctrl-.
     5. Observe that the packet details list is populated.
    
    Change-Id: I17f00e7fbc6e63ad52b6a0543fd850b473e506a2
    Fixes: v3.1.1rc0-762-gb3f240dbf8 ("Qt: Multiselection in PacketList")
    Reviewed-on: https://code.wireshark.org/review/35203
    Petri-Dish: Peter Wu <peter@xxxxxxxxxxxxx>
    Tested-by: Petri Dish Buildbot
    Reviewed-by: Peter Wu <peter@xxxxxxxxxxxxx>
    Reviewed-by: Roland Knall <rknall@xxxxxxxxx>
    (cherry picked from commit 076334a70c553b9e535f85958b1039cdb231cee2)
    Reviewed-on: https://code.wireshark.org/review/35217
    

Actions performed:

    from  4c02a86   Qt: Show all column types in context menu
     add  cfaa1bc   Qt: fix packet selection when modifiers are pressed


Summary of changes:
 ui/qt/packet_list.cpp | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)