mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-07-22 15:38:03 +02:00
2019-10-21 Fred Gleason <fredg@paravelsystems.com>
* Fixed the font used for labels in the 'Edit RDLogEdit' dialog in rdadmin(1).
This commit is contained in:
parent
32a36fa878
commit
9709016091
@ -19211,3 +19211,6 @@
|
||||
2019-10-17 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a regression in the 'Select Cut' ['RDCutDialog'] that
|
||||
caused 'Group:' dropdown list to be empty.
|
||||
2019-10-21 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed the font used for labels in the 'Edit RDLogEdit' dialog
|
||||
in rdadmin(1).
|
||||
|
@ -205,6 +205,7 @@ EditRDLogedit::EditRDLogedit(RDStation *station,RDStation *cae_station,
|
||||
lib_endcart_edit->setValidator(validator);
|
||||
QLabel *lib_endcart_label=
|
||||
new QLabel(lib_endcart_edit,tr("Play &End Cart:"),this);
|
||||
lib_endcart_label->setFont(labelFont());
|
||||
lib_endcart_label->setGeometry(25,292,150,19);
|
||||
lib_endcart_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
||||
button=new QPushButton(this);
|
||||
@ -221,6 +222,7 @@ EditRDLogedit::EditRDLogedit(RDStation *station,RDStation *cae_station,
|
||||
lib_recstartcart_edit->setValidator(validator);
|
||||
QLabel *lib_recstartcart_label=
|
||||
new QLabel(lib_recstartcart_edit,tr("&Record Start Cart:"),this);
|
||||
lib_recstartcart_label->setFont(labelFont());
|
||||
lib_recstartcart_label->setGeometry(25,316,150,19);
|
||||
lib_recstartcart_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
||||
button=new QPushButton(this);
|
||||
@ -237,6 +239,7 @@ EditRDLogedit::EditRDLogedit(RDStation *station,RDStation *cae_station,
|
||||
lib_recendcart_edit->setValidator(validator);
|
||||
QLabel *lib_recendcart_label=
|
||||
new QLabel(lib_recendcart_edit,tr("Re&cord End Cart:"),this);
|
||||
lib_recendcart_label->setFont(labelFont());
|
||||
lib_recendcart_label->setGeometry(25,340,150,19);
|
||||
lib_recendcart_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
||||
button=new QPushButton(this);
|
||||
|
Loading…
x
Reference in New Issue
Block a user