ignoreMouse

This node property will disable mouse input on the given node.

@safe
ignoreMouse
(
bool value = true
)

Parameters

value bool

If set to false, the effect is reversed and mouse input is instead enabled.

Examples

import fluid.label;
import fluid.button;

// Prevents the label from blocking the button
vframeButton(
    label(.ignoreMouse, "Click me!"),
    delegate { }
);

Meta