Clicked Handler not being called for Button

Hi,

After upgrading to 0.2x the clicked handler for fuse-modalview is no longer being called. I add it like this:

    for (var i = 0; i < buttons.Length; i++) {
        var tempButton = new Fuse.Controls.Button();
        temp8.Children.Add(tempButton);
        tempButton.Text = buttons[i] as string;
        Fuse.Gestures.Clicked.AddHandler(tempButton, ButtonClickHandler);
    }

And ButtonClickHandler looks like this:

void ButtonClickHandler (object sender, Fuse.Gestures.ClickedArgs args) {

But a debug_log in the start is not being called.

Here is the full project:

https://github.com/bolav/fuse-modalview

Hi, this is probably due to a hittest bug that was fixed for Fuse 0.22. Can you please see if the problem persists on that version? It’s out on the qa channel now, but has a few bugs. An improved version will be available later today or tomorrow.

Fixed in 0.22.

Great, thanks for letting us know! :slight_smile: