Skip to content

Commit 01e016d

Browse files
committed
agx: all pickers work
1 parent 2702355 commit 01e016d

File tree

2 files changed

+15
-140
lines changed

2 files changed

+15
-140
lines changed

src/develop/develop.c

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2955,14 +2955,12 @@ float dt_dev_exposure_get_effective_exposure(dt_develop_t *dev)
29552955
{
29562956
if (dt_view_get_current() != DT_VIEW_DARKROOM)
29572957
{
2958-
printf("@@@ kofa dt_dev_exposure_get_effective_exposure NOT DT_VIEW_DARKROOM\n");
29592958
return 0.0f;
29602959
}
29612960

29622961
// The proxy function pointers are only set if an exposure module has been initialized.
29632962
if (!dev->proxy.exposure.get_effective_exposure)
29642963
{
2965-
printf("@@@ kofa dt_dev_exposure_get_effective_exposure proxy.exposure.get_effective_exposure is NULL\n");
29662964
return 0.0f;
29672965
}
29682966

@@ -2983,17 +2981,8 @@ float dt_dev_exposure_get_effective_exposure(dt_develop_t *dev)
29832981
dt_iop_module_t *preferred_exposure_instance = dt_iop_get_module_enabled_preferring_unmasked_first_instance(exposure_so);
29842982
if (preferred_exposure_instance)
29852983
{
2986-
printf("@@@ kofa dt_dev_exposure_get_effective_exposure found preferred_exposure_instance\n");
29872984
return dev->proxy.exposure.get_effective_exposure(preferred_exposure_instance);
29882985
}
2989-
else
2990-
{
2991-
printf("@@@ kofa dt_dev_exposure_get_effective_exposure preferred_exposure_instance is NULL\n");
2992-
}
2993-
}
2994-
else
2995-
{
2996-
printf("@@@ kofa dt_dev_exposure_get_effective_exposure exposure_so is NULL\n");
29972986
}
29982987

29992988
return 0.0f;

0 commit comments

Comments
 (0)