mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-07-12 14:47:44 +02:00
2022-05-11 Fred Gleason <fredg@paravelsystems.com>
* 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. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
e53242c53a
commit
e2fbdf4d33
@ -23053,3 +23053,7 @@
|
|||||||
2022-05-04 Fred Gleason <fredg@paravelsystems.com>
|
2022-05-04 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a bug in rdcatchd(8) that could cause a segfault when
|
* Fixed a bug in rdcatchd(8) that could cause a segfault when
|
||||||
executing one shot events.
|
executing one shot events.
|
||||||
|
2022-05-11 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* 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.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
//
|
//
|
||||||
// Audio player for RDMarkerDialog
|
// Audio player for RDMarkerDialog
|
||||||
//
|
//
|
||||||
// (C) Copyright 2021 Fred Gleason <fredg@paravelsystems.com>
|
// (C) Copyright 2021-2022 Fred Gleason <fredg@paravelsystems.com>
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or modify
|
// 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
|
// 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
|
"`SEGUE_END_POINT`,"+ // 05
|
||||||
"`HOOK_START_POINT`,"+ // 06
|
"`HOOK_START_POINT`,"+ // 06
|
||||||
"`HOOK_END_POINT`,"+ // 07
|
"`HOOK_END_POINT`,"+ // 07
|
||||||
"`FADEUP_POINT`,"+ // 08
|
"`FADEDOWN_POINT`,"+ // 08
|
||||||
"`FADEDOWN_POINT`,"+ // 09
|
"`FADEUP_POINT`,"+ // 09
|
||||||
"`SEGUE_GAIN`,"+ // 10
|
"`SEGUE_GAIN`,"+ // 10
|
||||||
"`PLAY_GAIN` "+ // 11
|
"`PLAY_GAIN` "+ // 11
|
||||||
"from `CUTS` where "+
|
"from `CUTS` where "+
|
||||||
|
@ -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("`SEGUE_END_POINT`");
|
||||||
d_pointer_fields.push_back("`HOOK_START_POINT`");
|
d_pointer_fields.push_back("`HOOK_START_POINT`");
|
||||||
d_pointer_fields.push_back("`HOOK_END_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("`FADEDOWN_POINT`");
|
||||||
|
d_pointer_fields.push_back("`FADEUP_POINT`");
|
||||||
|
|
||||||
//
|
//
|
||||||
// The Main Mouse Menu
|
// The Main Mouse Menu
|
||||||
|
Loading…
x
Reference in New Issue
Block a user