Update app.py
Browse files
app.py
CHANGED
|
@@ -114,7 +114,7 @@ def deblur_image(filepath):
|
|
| 114 |
print(f"Error processing image: {e}")
|
| 115 |
return None
|
| 116 |
|
| 117 |
-
# ✅
|
| 118 |
custom_css = """
|
| 119 |
/* Completely hide fullscreen and share buttons */
|
| 120 |
button[title="Fullscreen"],
|
|
@@ -174,4 +174,4 @@ demo = gr.Interface(
|
|
| 174 |
|
| 175 |
# ✅ Launch Gradio app
|
| 176 |
if __name__ == "__main__":
|
| 177 |
-
demo.launch()
|
|
|
|
| 114 |
print(f"Error processing image: {e}")
|
| 115 |
return None
|
| 116 |
|
| 117 |
+
# ✅ Your original CSS with fullscreen button removed
|
| 118 |
custom_css = """
|
| 119 |
/* Completely hide fullscreen and share buttons */
|
| 120 |
button[title="Fullscreen"],
|
|
|
|
| 174 |
|
| 175 |
# ✅ Launch Gradio app
|
| 176 |
if __name__ == "__main__":
|
| 177 |
+
demo.launch()
|