serializer: ensure backwards compatibility

This commit is contained in:
itsmattkc
2023-02-26 15:42:54 -08:00
parent 46d15396a6
commit 7ec8a4dd7e
31 changed files with 777 additions and 417 deletions
+2 -2
View File
@@ -911,7 +911,7 @@ void TimeBasedWidget::HideSnaps()
bool TimeBasedWidget::CopySelected(bool cut)
{
if (ruler()->hasFocus() && ruler()->CopySelected(cut)) {
if (ruler()->CopySelected(cut)) {
return true;
}
@@ -920,7 +920,7 @@ bool TimeBasedWidget::CopySelected(bool cut)
bool TimeBasedWidget::Paste()
{
if (ruler()->hasFocus() && ruler()->PasteMarkers()) {
if (ruler()->PasteMarkers()) {
return true;
}