mirror of
https://github.com/nasa/openmct.git
synced 2025-06-13 04:38:15 +00:00
[Plot] Fix insertion in PlotLineBuffer
WTD-806.
This commit is contained in:
@ -131,8 +131,8 @@ define(
|
||||
// Shift data over if necessary
|
||||
if (index < length) {
|
||||
buffer.set(
|
||||
buffer.subarray(index, length - index),
|
||||
index + sz
|
||||
buffer.subarray(index * 2, length * 2),
|
||||
(index + sz) * 2
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user