Skip to content

Commit 88f50b0

Browse files
committed
Fix In the 360 filter, the keyframe button itself is disabled
Reported here: https://forum.shotcut.org/t/in-the-360-filter-the-keyframe-button-itself-is-disabled/47322
1 parent 9fe89e2 commit 88f50b0

File tree

1 file changed

+1
-0
lines changed
  • src/qml/filters/bigsh0t_eq_to_stereo

1 file changed

+1
-0
lines changed

src/qml/filters/bigsh0t_eq_to_stereo/ui.qml

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ Item {
5858
fovSlider.value = filter.getDouble("fov", position);
5959
fovKeyframesButton.checked = filter.animateIn <= 0 && filter.animateOut <= 0 && filter.keyframeCount("fov") > 0;
6060
amountSlider.value = filter.getDouble("amount", position);
61+
amountKeyframesButton.checked = filter.animateIn <= 0 && filter.animateOut <= 0 && filter.keyframeCount("amount") > 0;
6162
interpolationComboBox.currentIndex = filter.get("interpolation");
6263
blockUpdate = false;
6364
}

0 commit comments

Comments
 (0)