mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-06-12 06:10:27 +02:00
Merge branch 'deltecent-rdlogedit-user'
This commit is contained in:
commit
06b85de909
@ -17937,3 +17937,6 @@
|
||||
2018-10-28 Patrick Linstruth <patrick@deltecent.com>
|
||||
* Fixed a regression in rdlogmanaer(1) that threw a segfault when
|
||||
adding a Log Note to an Event.
|
||||
2018-10-28 Patrick Linstruth <patrick@deltecent.com>
|
||||
* Fix delete and voice track buttons in rdlogedit(1).
|
||||
* Fix bug in RDSimplePlayer setCart() method.
|
||||
|
@ -84,6 +84,7 @@ bool RDSimplePlayer::isPlaying()
|
||||
void RDSimplePlayer::setCart(unsigned cart)
|
||||
{
|
||||
play_cart=cart;
|
||||
play_cut="";
|
||||
}
|
||||
|
||||
|
||||
|
@ -300,8 +300,8 @@ void MainWidget::userData()
|
||||
// Set Control Perms
|
||||
//
|
||||
log_add_button->setEnabled(rda->user()->createLog());
|
||||
log_delete_button->setEnabled(rda->user()->deleteLog());
|
||||
log_track_button->setEnabled(rda->user()->voicetrackLog());
|
||||
log_delete_button->setEnabled(false);
|
||||
log_track_button->setEnabled(false);
|
||||
}
|
||||
|
||||
|
||||
@ -631,8 +631,8 @@ void MainWidget::logSelectionChangedData()
|
||||
item=(ListListViewItem *)item->nextSibling();
|
||||
}
|
||||
log_edit_button->setEnabled(count==1);
|
||||
log_delete_button->setEnabled(count>0);
|
||||
log_track_button->setEnabled(count==1);
|
||||
log_delete_button->setEnabled(count>0&&rda->user()->deleteLog());
|
||||
log_track_button->setEnabled(count==1&&rda->user()->voicetrackLog());
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user