@@ -152,7 +152,7 @@ def skip_clicked(currentTask):
152152 with gr .TabItem (label = 'Upscale or Variation' ) as uov_tab :
153153 with gr .Row ():
154154 with gr .Column ():
155- uov_input_image = grh .Image (label = 'Drag above image to here ' , source = 'upload' , type = 'numpy' )
155+ uov_input_image = grh .Image (label = 'Image ' , source = 'upload' , type = 'numpy' , show_label = False )
156156 with gr .Column ():
157157 uov_method = gr .Radio (label = 'Upscale or Variation:' , choices = flags .uov_list , value = flags .disabled )
158158 gr .HTML ('<a href="https://github.com/lllyasviel/Fooocus/discussions/390" target="_blank">\U0001F4D4 Document</a>' )
@@ -201,7 +201,7 @@ def ip_advance_checked(x):
201201 queue = False , show_progress = False )
202202 with gr .TabItem (label = 'Inpaint or Outpaint' ) as inpaint_tab :
203203 with gr .Row ():
204- inpaint_input_image = grh .Image (label = 'Drag inpaint or outpaint image to here ' , source = 'upload' , type = 'numpy' , tool = 'sketch' , height = 500 , brush_color = "#FFFFFF" , elem_id = 'inpaint_canvas' )
204+ inpaint_input_image = grh .Image (label = 'Image ' , source = 'upload' , type = 'numpy' , tool = 'sketch' , height = 500 , brush_color = "#FFFFFF" , elem_id = 'inpaint_canvas' , show_label = False )
205205 inpaint_mask_image = grh .Image (label = 'Mask Upload' , source = 'upload' , type = 'numpy' , height = 500 , visible = False )
206206
207207 with gr .Row ():
@@ -214,7 +214,7 @@ def ip_advance_checked(x):
214214 with gr .TabItem (label = 'Describe' ) as desc_tab :
215215 with gr .Row ():
216216 with gr .Column ():
217- desc_input_image = grh .Image (label = 'Drag any image to here ' , source = 'upload' , type = 'numpy' )
217+ desc_input_image = grh .Image (label = 'Image ' , source = 'upload' , type = 'numpy' , show_label = False )
218218 with gr .Column ():
219219 desc_method = gr .Radio (
220220 label = 'Content Type' ,
@@ -233,7 +233,7 @@ def trigger_show_image_properties(image):
233233
234234 with gr .TabItem (label = 'Metadata' ) as load_tab :
235235 with gr .Column ():
236- metadata_input_image = grh .Image (label = 'Drag any image generated by Fooocus here ' , source = 'upload' , type = 'filepath' )
236+ metadata_input_image = grh .Image (label = 'For images created by Fooocus' , source = 'upload' , type = 'filepath' )
237237 metadata_json = gr .JSON (label = 'Metadata' )
238238 metadata_import_button = gr .Button (value = 'Apply Metadata' )
239239
0 commit comments