enable tooltips

This commit is contained in:
yggverse 2025-02-07 20:45:14 +02:00
parent cd6d4ade9e
commit 7fe77994c2
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ impl Mime for gtk::Entry {
.margin_bottom(8)
.placeholder_text(TEXT)
.text(text)
//.tooltip_text(TEXT)
.tooltip_text(TEXT)
.build();
mime.connect_realize(|this| {

View file

@ -10,7 +10,7 @@ impl Token for Entry {
Entry::builder()
.placeholder_text(TEXT)
.text(text)
//.tooltip_text(TEXT)
.tooltip_text(TEXT)
.build()
}
}