Merge branch 'furtherocio' into nodes

This commit is contained in:
itsmattkc
2019-04-21 23:03:48 +10:00
9 changed files with 62 additions and 36 deletions
+1 -1
View File
@@ -753,7 +753,7 @@ void Timeline::split_at_playhead()
}
long getFrameFromScreenPoint(double zoom, int x) {
long f = qRound(double(x) / zoom);
long f = qFloor(double(x) / zoom);
if (f < 0) {
return 0;
}