mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
make response title selectable
This commit is contained in:
parent
1aae5a0f28
commit
76c0e1970a
2 changed files with 3 additions and 0 deletions
|
|
@ -10,6 +10,7 @@ impl Title for Label {
|
||||||
.css_classes(["heading"])
|
.css_classes(["heading"])
|
||||||
.halign(Align::Start)
|
.halign(Align::Start)
|
||||||
.label(title.unwrap_or("Input expected"))
|
.label(title.unwrap_or("Input expected"))
|
||||||
|
.selectable(true)
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,8 @@ impl Form {
|
||||||
|
|
||||||
if let Some(value) = title {
|
if let Some(value) = title {
|
||||||
password_entry_row.set_title(value);
|
password_entry_row.set_title(value);
|
||||||
|
/* @TODO has no effect
|
||||||
|
password_entry_row.set_title_selectable(true); */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* @TODO adw 1.6 / ubuntu 24.10+
|
/* @TODO adw 1.6 / ubuntu 24.10+
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue