mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-08-03 17:39:27 +02:00
2021-10-05 Fred Gleason <fredg@paravelsystems.com>
* Added item icons to the 'Default Cart Type' dropdown in the 'Edit Group' dialog in rdadmin(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
1d485f3ae3
commit
55f4f1db17
@ -22501,3 +22501,6 @@
|
|||||||
* Fixed a bug in the 'Rename Group' dialog in rdadmin(1) that
|
* Fixed a bug in the 'Rename Group' dialog in rdadmin(1) that
|
||||||
caused the group being renamed to be deleted when simply attempting
|
caused the group being renamed to be deleted when simply attempting
|
||||||
to change the case of its name.
|
to change the case of its name.
|
||||||
|
2021-10-05 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Added item icons to the 'Default Cart Type' dropdown in the
|
||||||
|
'Edit Group' dialog in rdadmin(1).
|
||||||
|
@ -93,7 +93,11 @@ EditGroup::EditGroup(QString group,QWidget *parent)
|
|||||||
//
|
//
|
||||||
group_carttype_box=new QComboBox(this);
|
group_carttype_box=new QComboBox(this);
|
||||||
group_carttype_box->insertItem(0,tr("Audio"));
|
group_carttype_box->insertItem(0,tr("Audio"));
|
||||||
|
group_carttype_box->
|
||||||
|
setItemIcon(0,rda->iconEngine()->typeIcon(RDLogLine::Cart));
|
||||||
group_carttype_box->insertItem(1,tr("Macro"));
|
group_carttype_box->insertItem(1,tr("Macro"));
|
||||||
|
group_carttype_box->
|
||||||
|
setItemIcon(1,rda->iconEngine()->typeIcon(RDLogLine::Macro));
|
||||||
group_carttype_label=new QLabel(tr("Default Cart Type:"),this);
|
group_carttype_label=new QLabel(tr("Default Cart Type:"),this);
|
||||||
group_carttype_label->setFont(labelFont());
|
group_carttype_label->setFont(labelFont());
|
||||||
group_carttype_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
group_carttype_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user