PintaProject / Pinta

Simple GTK# Paint Program
http://www.pinta-project.com/
MIT License
1.74k stars 267 forks source link

Combobox creation in `SimpleEffectDialog.CreateComboBox()` now looks for an `IDictionary<T>`, and not a `Dictionary<T>` #865

Closed Lehonti closed 3 weeks ago

Lehonti commented 3 weeks ago

Otherwise the lookup in BlendOps from CloudsEffect might just fail anyway because it is a ReadOnlyDictionary, but with this change it should work with any dictionary structure.

Also, made messages in exceptions more informative.