allow setting background adjustment sliders in 1% increments

closes #10289
This commit is contained in:
Martin Raifer
2025-03-11 11:29:21 +01:00
parent bb012d6a67
commit 68eb90f665

View File

@@ -74,7 +74,7 @@ export function uiSectionBackgroundDisplayOptions(context) {
.attr('type', 'range')
.attr('min', _minVal)
.attr('max', _maxVal)
.attr('step', '0.05')
.attr('step', '0.01')
.on('input', function(d3_event, d) {
var val = d3_select(this).property('value');
if (!val && d3_event && d3_event.target) {