2022-05-23 Fred Gleason <fredg@paravelsystems.com>

* Removed the 'ALL' entry from the 'Default Group' dropdown in the
	'Dropbox Configuration' dialog in rdlogmanager(1).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2022-05-23 13:03:57 -04:00
parent 1241a64fb8
commit d15728a78d
2 changed files with 7 additions and 6 deletions

View File

@ -23152,3 +23152,6 @@
* Fixed a regression in the 'Generate Log' dialog in rdlogmanager(1)
that caused the progress bar dialog to fail to be hidden after
generation of a log.
2022-05-23 Fred Gleason <fredg@paravelsystems.com>
* Removed the 'ALL' entry from the 'Default Group' dropdown in the
'Dropbox Configuration' dialog in rdlogmanager(1).

View File

@ -38,10 +38,8 @@ EditDropbox::EditDropbox(int id,bool duplicate,QWidget *parent)
//
// Fix the Window Size
//
setMinimumWidth(sizeHint().width());
setMaximumWidth(sizeHint().width());
setMinimumHeight(sizeHint().height());
setMaximumHeight(sizeHint().height());
setMinimumSize(sizeHint());
setMaximumSize(sizeHint());
box_dropbox=new RDDropbox(id);
@ -57,8 +55,8 @@ EditDropbox::EditDropbox(int id,bool duplicate,QWidget *parent)
// Group Name
//
box_group_name_box=new QComboBox(this);
box_group_name_box->setGeometry(140,10,100,20);
box_group_name_model=new RDGroupListModel(true,false,true,this);
box_group_name_box->setGeometry(140,10,140,20);
box_group_name_model=new RDGroupListModel(false,false,true,this);
box_group_name_model->setFont(defaultFont());
box_group_name_model->setPalette(palette());
box_group_name_box->setModel(box_group_name_model);