push app
Browse files
app.py
CHANGED
|
@@ -107,7 +107,7 @@ if "img" in st.session_state:
|
|
| 107 |
display_img = img
|
| 108 |
|
| 109 |
# Call the streamlit_image_coordinates component with our display image.
|
| 110 |
-
coords = streamlit_image_coordinates(display_img, key="click_img",
|
| 111 |
|
| 112 |
# If new coordinates are returned and differ from what we have stored, update them and rerun.
|
| 113 |
if coords and st.session_state.get("coords") != coords:
|
|
|
|
| 107 |
display_img = img
|
| 108 |
|
| 109 |
# Call the streamlit_image_coordinates component with our display image.
|
| 110 |
+
coords = streamlit_image_coordinates(display_img, key="click_img", use_column_width="always")
|
| 111 |
|
| 112 |
# If new coordinates are returned and differ from what we have stored, update them and rerun.
|
| 113 |
if coords and st.session_state.get("coords") != coords:
|