From 18e111322ce747e520eb7e1e016c3c1eb14a2b91 Mon Sep 17 00:00:00 2001 From: Dowon Date: Wed, 25 Sep 2024 20:18:48 +0900 Subject: [PATCH] fix(ui): ad_mask_filter_method add suffix --- aaaaaa/ui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aaaaaa/ui.py b/aaaaaa/ui.py index 70ca6de..f637d79 100644 --- a/aaaaaa/ui.py +++ b/aaaaaa/ui.py @@ -297,7 +297,8 @@ def detection(w: Widgets, n: int, is_img2img: bool): w.ad_mask_filter_method = gr.Radio( choices=["Area", "Confidence"], value="Area", - label="Method to filter top k masks by (confidence or area)", + label="Method to filter top k masks by (confidence or area)" + + suffix(n), visible=True, elem_id=eid("ad_mask_filter_method"), )