2019-11-22 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in the cart selector dialog that caused
	default focus to be lost on the 'Filter' control after second
	and subsequent invocations.
This commit is contained in:
Fred Gleason 2019-11-25 12:32:00 -05:00
parent 5b36f066b4
commit 962603525f
2 changed files with 5 additions and 0 deletions

View File

@ -19263,3 +19263,7 @@
* Fixed a regression in rdimport(1) that caused null characters to * Fixed a regression in rdimport(1) that caused null characters to
be written to cart metadata fields when importing files containing be written to cart metadata fields when importing files containing
an 'AIR1' RIFF chunk. an 'AIR1' RIFF chunk.
2019-11-22 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in the cart selector dialog that caused
default focus to be lost on the 'Filter' control after second
and subsequent invocations.

View File

@ -359,6 +359,7 @@ int RDCartDialog::exec(int *cartnum,RDCart::Type type,QString *svcname,
} }
item=(RDListViewItem *)item->nextSibling(); item=(RDListViewItem *)item->nextSibling();
} }
cart_filter_edit->setFocus();
return QDialog::exec(); return QDialog::exec();
} }