mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
Merge pull request #960 from hgiesel/easegraphfix2
Fix ease graph building wrong query omitting ease edge cases
This commit is contained in:
commit
4307badc95
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ function makeQuery(start: number, end: number): string {
|
|||
}
|
||||
|
||||
const fromQuery = `"prop:ease>=${start / 100}"`;
|
||||
const tillQuery = `"prop:ease<${end / 100}"`;
|
||||
const tillQuery = `"prop:ease<${(end + 1) / 100}"`;
|
||||
|
||||
return `${fromQuery} AND ${tillQuery}`;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue