endlessm / eos-photos

Endless photo application
Other
4 stars 3 forks source link

Explicitly require GTK 3 to prevent GTK 4 from being loaded #328

Closed andrewshadura closed 2 years ago

andrewshadura commented 2 years ago

When GTK 4 is installed concurrently with GTK 3, importing Gtk will result in GTK 4 being loaded. However, GTK 3 will be required later by other dependencies, resulting in a conflict:

Requiring namespace 'Gtk' version '3.0', but '4.0' is already loaded

To prevent this from happening, explicitly require GTK 3 until the app is ported to support GTK 4.

wjt commented 2 years ago

Thank you!