diff --git a/src/app/browser/window/tab/item/page/input/titan/header/form/mime.rs b/src/app/browser/window/tab/item/page/input/titan/header/form/mime.rs index a49b1786..5d9b2fbf 100644 --- a/src/app/browser/window/tab/item/page/input/titan/header/form/mime.rs +++ b/src/app/browser/window/tab/item/page/input/titan/header/form/mime.rs @@ -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| { diff --git a/src/app/browser/window/tab/item/page/input/titan/header/form/token.rs b/src/app/browser/window/tab/item/page/input/titan/header/form/token.rs index 2780d962..1f0912ad 100644 --- a/src/app/browser/window/tab/item/page/input/titan/header/form/token.rs +++ b/src/app/browser/window/tab/item/page/input/titan/header/form/token.rs @@ -10,7 +10,7 @@ impl Token for Entry { Entry::builder() .placeholder_text(TEXT) .text(text) - //.tooltip_text(TEXT) + .tooltip_text(TEXT) .build() } }