What would be the signal for clicking the 'ok' button in the QColorDialog.
I tried
self.color_chooser = QtWidgets.QColorDialog()
self.color_chooser.getColor()
self.color_chooser.currentColorChanged.connect(self.color_pick)
def color_pick(self):
print 'signaled'
that did not work.
The signal you are requesting is
colorSelected, this is issued after pressing the OK buttonIf you want to get the color after pressing the OK button you can use these other methods: