Files
gimp/data/dynamics/meson.build
Asalle 614e1c6b4c app: make dynamics tool options a checkbox
Fixes #4333

If the checkbox is unchecked: dynamics falls back to "Dynamics Off",
the current dynamics name and its options are hidden in the UI.

If the checkbox is checked: dynamics is set to previously used one
or the default one, all dynamics options are seen in the UI.
2022-02-03 20:33:45 +01:00

26 lines
472 B
Meson

dynamics = files(
'Basic-Dynamics.gdyn',
'Color-From-Gradient.gdyn',
'Fade-Tapering.gdyn',
'Random-Color.gdyn',
'Tilt-Angle.gdyn',
'Track-Direction.gdyn',
'Velocity-Tapering.gdyn',
)
install_data(dynamics,
install_dir: gimpdatadir / 'dynamics',
)
dynamics_types = [
'Basic',
'FX',
]
foreach dynamics_type : dynamics_types
subdir(dynamics_type)
install_data(
dynamics,
install_dir: gimpdatadir / 'dynamics' / dynamics_type,
)
endforeach