Revert uppx flooring, causes shift issues

update_last_datums_in_view
Tyler Goodlet 2022-06-10 07:02:32 -04:00
parent da5dea9f99
commit 8eb4a427da
1 changed files with 1 additions and 2 deletions

View File

@ -24,7 +24,6 @@ graphics update methods via our custom ``pyqtgraph`` charting api.
from dataclasses import dataclass from dataclasses import dataclass
from functools import partial from functools import partial
import time import time
from math import floor
from typing import Optional, Any, Callable from typing import Optional, Any, Callable
import numpy as np import numpy as np
@ -368,7 +367,7 @@ def graphics_update_cycle(
# such unit steps per pixel (aka uppx). Iow, if the zoom level # such unit steps per pixel (aka uppx). Iow, if the zoom level
# is such that a datum(s) update to graphics wouldn't span # is such that a datum(s) update to graphics wouldn't span
# to a new pixel, we don't update yet. # to a new pixel, we don't update yet.
do_append = (append_diff >= floor(uppx)) do_append = (append_diff >= uppx)
if do_append: if do_append:
vars['i_last_append'] = i_step vars['i_last_append'] = i_step