Fixed conflict in 'ChangeLog'

This commit is contained in:
Fred Gleason 2019-02-04 08:55:38 -05:00
commit db8ac86a69
2 changed files with 14 additions and 2 deletions

View File

@ -18436,6 +18436,9 @@
* Fixed a bug in the 'EditCut' web API call that caused attempts
to clear the 'START_DAYPART' and 'END_DAYPART' fields to return
an error.
2019-01-30 Patrick Linstruth <patrick@deltecent.com>
2019-02-04 Patrick Linstruth <patrick@deltecent.com>
* Fixed a bug in RDCut::copyTo() where the segue gain was not
copied.
2019-02-04 Patrick Linstruth <patrick@deltecent.com>
* Fixed a bug in rdlibrary(1) where double-clicking a cart would
expand/collapse the item.

View File

@ -1000,9 +1000,18 @@ void MainWidget::cartClickedData()
}
void MainWidget::cartDoubleclickedData(Q3ListViewItem *,const QPoint &,int)
void MainWidget::cartDoubleclickedData(Q3ListViewItem * item,const QPoint &,int)
{
editData();
//
// KLUDGE ALERT:
// The default double-click behavior of a Q3ListViewItem is to expand/collapse the item.
// We don't want it to do that, so if we set the open status to the opposite of what we
// want (the current status), it will put it back to what we do want. There is probably
// a Qt way of doing this which should probably be addressed at a later date.
//
item->setOpen(!item->isOpen());
}