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.
1 parent 2f4ea7f commit e43f729Copy full SHA for e43f729
src/chart/generator/selector.cpp
@@ -28,7 +28,8 @@ bool Selector::anySelected()
28
auto allCnt = 0U;
29
for (const auto &marker : plot.getMarkers()) {
30
if (static_cast<double>(marker.enabled) > 0) {
31
- if (marker.selected) selectedCnt++;
+ if (static_cast<double>(marker.selected) > 0)
32
+ selectedCnt++;
33
allCnt++;
34
}
35
0 commit comments