
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.
26 lines
472 B
Meson
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
|