Rafostar / clapper

Level up your video experience with a modern and user-friendly media player.
https://rafostar.github.io/clapper/
GNU General Public License v3.0
714 stars 34 forks source link

plugin: sink: Replace deprecated method #312

Closed jakedane closed 1 year ago

jakedane commented 1 year ago

The method gtk_picture_set_keep_aspect_ratio is deprecated. As per the warnings given when compiling clapper, it is replaced with gtk_picture_set_content_fit with the same behavior as before.

Rafostar commented 1 year ago

Thanks for contributing. Unfortunately as-is this is gonna break compilation for anyone who doesn't run latest GTK 4.8+ version. We need to use #if GTK_CHECK_VERSION(4,8,0) here and #else with previous code. Can you update MR?

jakedane commented 1 year ago

Thank you for the feedback. MR updated.

Rafostar commented 1 year ago

Thanks!