mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-19 22:48:01 +02:00
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:
parent
1241a64fb8
commit
d15728a78d
@ -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).
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user