mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-12-01 06:10:10 +01:00
2025-07-04 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in the 'Edit Audio' dialog in rdlibrary(1) that caused a marker to be removed from the view if it was dragged beyond the left hand edge of the view. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -206,7 +206,7 @@ void RDMarkerHandle::mouseMoveEvent(QGraphicsSceneMouseEvent *e)
|
||||
}
|
||||
|
||||
if(limit_ptr<0) { // Generate new pointer value
|
||||
int64_t pframes=(int64_t)(1152*x*view->shrinkFactor());
|
||||
int64_t pframes=(int64_t)(1152*(x+1)*view->shrinkFactor());
|
||||
view->updatePosition(d_role,(int)((int64_t)1000*pframes/
|
||||
(int64_t)view->sampleRate()));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user