Skip to content

Commit 38d048c

Browse files
kofa73TurboGit
authored andcommitted
rotate and perspective: scrolling up/down should increase/decrease selection circle diameter, not the other way around
1 parent c32d613 commit 38d048c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/iop/ashift.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5209,7 +5209,7 @@ int scrolled(dt_iop_module_t *self,
52095209
near_delta = dt_conf_get_float("plugins/darkroom/ashift/near_delta_draw");
52105210
else
52115211
near_delta = dt_conf_get_float("plugins/darkroom/ashift/near_delta");
5212-
const float amount = up ? 0.8f : 1.25f;
5212+
const float amount = up ? 1.25f : 0.8f;
52135213
near_delta = MAX(4.0f, MIN(near_delta * amount, 100.0f));
52145214
if(g->current_structure_method == ASHIFT_METHOD_QUAD
52155215
|| g->current_structure_method == ASHIFT_METHOD_LINES)

0 commit comments

Comments
 (0)