2021-04-06 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in the Cart Selector Dialog that made it impossible
	to enter an apostrophe character in the filter search line.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2021-04-06 09:39:35 -04:00
parent 45a052edcf
commit fba2da0ab0
2 changed files with 3 additions and 6 deletions

View File

@ -20724,3 +20724,6 @@
2021-04-06 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdairplay(1) that caused the Talk Timer to
fail to be populated when adding new carts to a log.
2021-04-06 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in the Cart Selector Dialog that made it impossible
to enter an apostrophe character in the filter search line.

View File

@ -85,11 +85,6 @@ RDCartDialog::RDCartDialog(QString *filter,QString *group,QString *schedcode,
cart_playout_map=new QPixmap(play_xpm);
cart_macro_map=new QPixmap(rml5_xpm);
//
// Text Validator
//
RDTextValidator *validator=new RDTextValidator(this,"validator",true);
//
// Progress Dialog
//
@ -110,7 +105,6 @@ RDCartDialog::RDCartDialog(QString *filter,QString *group,QString *schedcode,
// Filter Selector
//
cart_filter_edit=new QLineEdit(this);
cart_filter_edit->setValidator(validator);
cart_filter_label=new QLabel(cart_filter_edit,tr("Cart Filter:"),this);
cart_filter_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
cart_filter_label->setFont(labelFont());