mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-18 08:31:16 +02:00
2022-03-25 Fred Gleason <fredg@paravelsystems.com>
* Reverted the following changes: 2022-03-09 Fred Gleason <fredg@paravelsystems.com> * Fixed a regression in rdlogedit(1) that caused events from previously viewed logs to be prepended to subsequent logs viewed during the same session. 2022-03-09 Fred Gleason <fredg@paravelsystems.com> * Refactored the 'RDAddLog' dialog to allow for instance reuse. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -247,8 +247,7 @@ void ListCasts::addLogData()
|
||||
RDListLogs *lld=
|
||||
new RDListLogs(&logname,RDLogFilter::UserFilter,"RDCastManager",this);
|
||||
if(lld->exec()) {
|
||||
RDLogModel *model=new RDLogModel(true,this);
|
||||
model->setLogName(logname);
|
||||
RDLogModel *model=new RDLogModel(logname,true,this);
|
||||
model->load();
|
||||
QTime start_time;
|
||||
bool ignore_stops=true;
|
||||
@@ -399,6 +398,12 @@ void ListCasts::userChangedData()
|
||||
}
|
||||
|
||||
|
||||
void ListCasts::filterChangedData(const QString &str)
|
||||
{
|
||||
// RefreshList();
|
||||
}
|
||||
|
||||
|
||||
void ListCasts::modelResetData()
|
||||
{
|
||||
list_casts_view->resizeColumnsToContents();
|
||||
|
Reference in New Issue
Block a user