Tuner.Entry
A text input row for string settings. Requires a binding.
| Property | Type | Description |
|---|---|---|
title | string | Row title |
show-apply-button | bool | Save 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.