mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-12-17 22:21:19 +01: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:
@@ -23152,3 +23152,6 @@
|
|||||||
* Fixed a regression in the 'Generate Log' dialog in rdlogmanager(1)
|
* Fixed a regression in the 'Generate Log' dialog in rdlogmanager(1)
|
||||||
that caused the progress bar dialog to fail to be hidden after
|
that caused the progress bar dialog to fail to be hidden after
|
||||||
generation of a log.
|
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
|
// Fix the Window Size
|
||||||
//
|
//
|
||||||
setMinimumWidth(sizeHint().width());
|
setMinimumSize(sizeHint());
|
||||||
setMaximumWidth(sizeHint().width());
|
setMaximumSize(sizeHint());
|
||||||
setMinimumHeight(sizeHint().height());
|
|
||||||
setMaximumHeight(sizeHint().height());
|
|
||||||
|
|
||||||
box_dropbox=new RDDropbox(id);
|
box_dropbox=new RDDropbox(id);
|
||||||
|
|
||||||
@@ -57,8 +55,8 @@ EditDropbox::EditDropbox(int id,bool duplicate,QWidget *parent)
|
|||||||
// Group Name
|
// Group Name
|
||||||
//
|
//
|
||||||
box_group_name_box=new QComboBox(this);
|
box_group_name_box=new QComboBox(this);
|
||||||
box_group_name_box->setGeometry(140,10,100,20);
|
box_group_name_box->setGeometry(140,10,140,20);
|
||||||
box_group_name_model=new RDGroupListModel(true,false,true,this);
|
box_group_name_model=new RDGroupListModel(false,false,true,this);
|
||||||
box_group_name_model->setFont(defaultFont());
|
box_group_name_model->setFont(defaultFont());
|
||||||
box_group_name_model->setPalette(palette());
|
box_group_name_model->setPalette(palette());
|
||||||
box_group_name_box->setModel(box_group_name_model);
|
box_group_name_box->setModel(box_group_name_model);
|
||||||
|
|||||||
Reference in New Issue
Block a user