We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9756c46 + e1300bb commit e9e1268Copy full SHA for e9e1268
src/gui/src/chartsWidget.cpp
@@ -414,7 +414,7 @@ void HistogramView::populateBuckets(
414
for (int bin = 0; bin < histogram_->getBinsCount(); bin++) {
415
const auto& [bin_start, bin_end] = histogram_->getBinRange(bin);
416
if ((bin_start + bin_end) / 2 < 0) {
417
- buckets_.negative.push_front(pin_bins[bin]);
+ buckets_.negative.push_back(pin_bins[bin]);
418
} else {
419
buckets_.positive.push_back(pin_bins[bin]);
420
}
0 commit comments