From 672d95b98eebb67a3dd49a07eee4bd544039c1fe Mon Sep 17 00:00:00 2001 From: yggverse Date: Sat, 26 Jul 2025 09:57:21 +0300 Subject: [PATCH] update button tooltips --- src/app/browser/proxy/ignore/row.rs | 2 +- src/app/browser/proxy/rule/row.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/browser/proxy/ignore/row.rs b/src/app/browser/proxy/ignore/row.rs index 559f4f4e..7e655f41 100644 --- a/src/app/browser/proxy/ignore/row.rs +++ b/src/app/browser/proxy/ignore/row.rs @@ -138,7 +138,7 @@ pub fn new(on_add: impl Fn() + 'static) -> Box { .css_classes(["success"]) .hexpand(true) .icon_name("list-add-symbolic") - .tooltip_text("Add proxy") + .tooltip_text("Add host exception") .build(); add.connect_clicked(move |_| on_add()); diff --git a/src/app/browser/proxy/rule/row.rs b/src/app/browser/proxy/rule/row.rs index 673ca9b4..9cacc918 100644 --- a/src/app/browser/proxy/rule/row.rs +++ b/src/app/browser/proxy/rule/row.rs @@ -183,7 +183,7 @@ pub fn new(on_add: impl Fn() + 'static) -> Box { .css_classes(["success"]) .hexpand(true) .icon_name("list-add-symbolic") - .tooltip_text("Add proxy") + .tooltip_text("Add proxy rule") .build(); add.connect_clicked(move |_| on_add());