mjohanes commited on
Commit
071911e
·
1 Parent(s): 92249de
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -120,8 +120,9 @@ if "img" in st.session_state:
120
  st.session_state.is_removing_dot = True
121
  else:
122
  st.session_state.coords_list.append(new_coord)
123
- st.session_state.is_removing_dot = False
124
  st.rerun()
 
 
125
 
126
  st.write("Coordinates:", st.session_state.get("coords"))
127
 
 
120
  st.session_state.is_removing_dot = True
121
  else:
122
  st.session_state.coords_list.append(new_coord)
 
123
  st.rerun()
124
+ else:
125
+ st.session_state.is_removing_dot = False
126
 
127
  st.write("Coordinates:", st.session_state.get("coords"))
128