mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-12-01 06:10:10 +01:00
2022-05-04 Fred Gleason <fredg@paravelsystems.com>
* Added an 'show_unchanged' argument to the constructor of the 'RDGroupListModel' model. * Modified the 'Edit Cart' dialog in rdlibrary(1) so as to default the 'Group:' and 'Usage:' controls to '[unchanged]' when opened in multi-edit mode. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// List Rivendell Groups
|
||||
//
|
||||
// (C) Copyright 2002-2021 Fred Gleason <fredg@paravelsystems.com>
|
||||
// (C) Copyright 2002-2022 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License version 2 as
|
||||
@@ -98,7 +98,7 @@ ListGroups::ListGroups(QWidget *parent)
|
||||
list_groups_view=new RDTableView(this);
|
||||
list_groups_view->setSortingEnabled(true);
|
||||
list_groups_view->sortByColumn(0,Qt::AscendingOrder);
|
||||
list_groups_model=new RDGroupListModel(false,true,this);
|
||||
list_groups_model=new RDGroupListModel(false,false,true,this);
|
||||
list_groups_model->setFont(defaultFont());
|
||||
list_groups_model->setPalette(palette());
|
||||
list_groups_view->setModel(list_groups_model);
|
||||
|
||||
Reference in New Issue
Block a user