GtkColorDialogButton vs GtkColorButton

The documentation (and compile warnings) show that GtkColorButton is deprecated and I should use GtkColorDialogButton
GtkColorButton had a signal “color-set” that is emitted when the user selects the color.
There is no such signal mentioned for GtkColorDialogButton. Can I get a signal (callback) with the selected color when the user selects a color?

You can connect to notify::rgba

That is mentioned in the docs here: Gtk.ColorDialogButton.get_rgba

Thanks … yes I just realized that.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.