diff --git a/ChangeLog b/ChangeLog index e29bfc34..889ac742 100644 --- a/ChangeLog +++ b/ChangeLog @@ -23053,3 +23053,7 @@ 2022-05-04 Fred Gleason * Fixed a bug in rdcatchd(8) that could cause a segfault when executing one shot events. +2022-05-11 Fred Gleason + * Fixed a bug in the 'Edit Audio' dialog that caused the positions + of the FadeUp and FadeDown markers to be transposed when loading + from and saving to the database. diff --git a/lib/rdmarkerplayer.cpp b/lib/rdmarkerplayer.cpp index feee7a74..2a215b61 100644 --- a/lib/rdmarkerplayer.cpp +++ b/lib/rdmarkerplayer.cpp @@ -2,7 +2,7 @@ // // Audio player for RDMarkerDialog // -// (C) Copyright 2021 Fred Gleason +// (C) Copyright 2021-2022 Fred Gleason // // 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 @@ -248,8 +248,8 @@ bool RDMarkerPlayer::setCut(unsigned cartnum,int cutnum) "`SEGUE_END_POINT`,"+ // 05 "`HOOK_START_POINT`,"+ // 06 "`HOOK_END_POINT`,"+ // 07 - "`FADEUP_POINT`,"+ // 08 - "`FADEDOWN_POINT`,"+ // 09 + "`FADEDOWN_POINT`,"+ // 08 + "`FADEUP_POINT`,"+ // 09 "`SEGUE_GAIN`,"+ // 10 "`PLAY_GAIN` "+ // 11 "from `CUTS` where "+ diff --git a/lib/rdmarkerview.cpp b/lib/rdmarkerview.cpp index 6af59dd7..326bc1e1 100644 --- a/lib/rdmarkerview.cpp +++ b/lib/rdmarkerview.cpp @@ -382,8 +382,8 @@ RDMarkerView::RDMarkerView(int width,int height,QWidget *parent) d_pointer_fields.push_back("`SEGUE_END_POINT`"); d_pointer_fields.push_back("`HOOK_START_POINT`"); d_pointer_fields.push_back("`HOOK_END_POINT`"); - d_pointer_fields.push_back("`FADEUP_POINT`"); d_pointer_fields.push_back("`FADEDOWN_POINT`"); + d_pointer_fields.push_back("`FADEUP_POINT`"); // // The Main Mouse Menu