From 52e9cc8d2e3b2a4287c3b535da06e6243495b29c Mon Sep 17 00:00:00 2001 From: yggverse Date: Sat, 2 Aug 2025 13:49:26 +0300 Subject: [PATCH] use hexpand, reorder properties asc --- src/app/browser/proxy/rule/row.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/browser/proxy/rule/row.rs b/src/app/browser/proxy/rule/row.rs index 9cacc918..2f17574a 100644 --- a/src/app/browser/proxy/rule/row.rs +++ b/src/app/browser/proxy/rule/row.rs @@ -34,10 +34,10 @@ impl Row { .build(); let request = Entry::builder() - .max_width_chars(12) + .hexpand(true) .placeholder_text("Request") - .tooltip_text("Supports regex expressions") .text(request.unwrap_or(".*")) + .tooltip_text("Supports regex expressions") .build(); let url = Entry::builder()