GlobalSettings settings;
const bool show_sampling_points =
settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool();
- if (show_sampling_points) {
+
+ if (show_sampling_points && (samples_per_pixel < 0.25)) {
p.setPen(SamplingPointColour);
p.drawRects(sampling_points, points_count);
}
GlobalSettings settings;
const bool show_sampling_points =
settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool();
- if (!show_sampling_points)
+
+ if (!show_sampling_points || (samples_per_pixel >= 0.25))
return;
// Paint the sampling points