diff --git a/ChangeLog b/ChangeLog index ac85f4af..fe8c0136 100644 --- a/ChangeLog +++ b/ChangeLog @@ -19263,5 +19263,9 @@ * Fixed a regression in rdimport(1) that caused null characters to be written to cart metadata fields when importing files containing an 'AIR1' RIFF chunk. +2019-11-22 Fred Gleason + * Fixed a regression in the cart selector dialog that caused + default focus to be lost on the 'Filter' control after second + and subsequent invocations. 2019-11-26 Fred Gleason * Removed 'Q3Socket' dependencies from 'RDCatchConnect'. diff --git a/lib/rdcart_dialog.cpp b/lib/rdcart_dialog.cpp index 43b6f62f..bfa9774d 100644 --- a/lib/rdcart_dialog.cpp +++ b/lib/rdcart_dialog.cpp @@ -359,6 +359,7 @@ int RDCartDialog::exec(int *cartnum,RDCart::Type type,QString *svcname, } item=(RDListViewItem *)item->nextSibling(); } + cart_filter_edit->setFocus(); return QDialog::exec(); }