1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-22 02:12:30 +01:00
This commit is contained in:
Mikael Finstad 2020-02-11 23:26:15 +08:00
parent 23c17f2862
commit e68c4c01c7

View File

@ -638,7 +638,9 @@ class App extends React.Component {
this.setState({ [cutTimeManualKey]: undefined });
this.setCutTime(type, time - this.state.startTimeOffset);
const rel = time - this.state.startTimeOffset;
this.setCutTime(type, rel);
setCursor(rel);
};
const cutTime = type === 'start' ? this.getApparentCutStartTime() : this.getApparentCutEndTime();