Skip to content

Tuner.Entry

A text input row for string settings. Requires a binding.

PropertyTypeDescription
titlestringRow title
show-apply-buttonboolSave the text only after pressing Enter or the apply button
blp
Tuner.Entry {
    title: _("Device name");
    show-apply-button: true;

    binding: Tuner.Setting {
        schema-id: "org.example.app";
        schema-key: "device-name";
    };
}

Without show-apply-button the value is written on every text change.

See Examples for using Tuner.Entry with file-based bindings.

Released under the GPL-3.0+ License. The content is available under CC BY-SA 4.0, unless stated otherwise.