2018-03-30 Fred Gleason <fredg@paravelsystems.com>

* Increased the maximum value of the 'Card' control in the
	'Edit Switcher' dialog in rdamin(1) to 9999.
This commit is contained in:
Fred Gleason 2018-03-30 14:37:34 -04:00
parent 779c36c246
commit aa2b1e6207
2 changed files with 5 additions and 2 deletions

View File

@ -16770,3 +16770,6 @@
* Removed event checks when update Playout events in rdcatch(1). * Removed event checks when update Playout events in rdcatch(1).
2018-03-30 Fred Gleason <fredg@paravelsystems.com> 2018-03-30 Fred Gleason <fredg@paravelsystems.com>
* Updated the date in the copyright notice in rdadmin(1). * Updated the date in the copyright notice in rdadmin(1).
2018-03-30 Fred Gleason <fredg@paravelsystems.com>
* Increased the maximum value of the 'Card' control in the
'Edit Switcher' dialog in rdamin(1) to 9999.

View File

@ -330,8 +330,8 @@ EditMatrix::EditMatrix(RDMatrix *matrix,QWidget *parent)
// Card Number // Card Number
// //
edit_card_box=new QSpinBox(this); edit_card_box=new QSpinBox(this);
edit_card_box->setGeometry(75,371,50,19); edit_card_box->setGeometry(75,371,60,19);
edit_card_box->setRange(0,RD_MAX_CARDS-1); edit_card_box->setRange(0,9999);
edit_card_label=new QLabel(edit_card_box,tr("Card:"),this); edit_card_label=new QLabel(edit_card_box,tr("Card:"),this);
edit_card_label->setGeometry(10,371,60,19); edit_card_label->setGeometry(10,371,60,19);
edit_card_label->setFont(bold_font); edit_card_label->setFont(bold_font);