Do not set Qt Window focus when highlighting rows

Bug: 11890
Change-Id: I372f096c1ac0e483bf49cf95831e3df43621a642
Reviewed-on: https://code.wireshark.org/review/19209
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
D. Ulis 2016-12-11 18:52:26 -05:00 committed by Gerald Combs
parent d6d2b59731
commit 128246bffb
1 changed files with 0 additions and 2 deletions

View File

@ -121,7 +121,6 @@ packet_list_select_first_row(void)
if (!gbl_cur_packet_list)
return;
gbl_cur_packet_list->goFirstPacket();
gbl_cur_packet_list->setFocus();
}
void
@ -130,7 +129,6 @@ packet_list_select_last_row(void)
if (!gbl_cur_packet_list)
return;
gbl_cur_packet_list->goLastPacket();
gbl_cur_packet_list->setFocus();
}
/*