This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
When creating a colorpicker widget from AceGUI the callback for the event "OnValueConfirmed" is not firing anymore since 10.2.5
local colorPicker = AceGUI:Create("ColorPicker") colorPicker:SetCallback("OnValueConfirmed", function(widget, callbackName, r, g, b, a) print("i dont get called") end)
Using OnValueChanged instead of OnValueConfirmed restores previous behavior.
Problem still exist because in AceConfigDialog event "OnValueConfirmed" now dont update this:
if event == "OnValueConfirmed" then if iscustom then AceConfigDialog:Open(user.appName, user.rootframe, unpack(basepath)) else AceConfigDialog:Open(user.appName, unpack(basepath)) end end
To post a comment, please login or register a new account.