roundabout,
created on Tuesday, 3 September 2024, 09:46:18 (1725356778),
received on Wednesday, 4 September 2024, 09:03:53 (1725440633)
Author identity: vlad <vlad.muntoiu@gmail.com>
8a9570134f23870043f7a9aa82e1ec7dfa49125e
static/picture-annotation.py
@@ -48,16 +48,7 @@ def change_object_type(event):
change_object_type_proxy = create_proxy(change_object_type)
async def select_shape(event):
global selected_shape
if shape_type != "select":
return
if selected_shape is not None:
selected_shape.classList.remove("selected")
print("Selected shape:", event.target)
selected_shape = event.target
async def focus_shape(selected_shape):
selected_shape.classList.add("selected")
objects = await get_all_objects()
@@ -93,7 +84,19 @@ async def select_shape(event):
object_list.appendChild(new_label)
new_radio.addEventListener("change", change_object_type_proxy)
print(objects)
async def select_shape(event):
global selected_shape
if shape_type != "select":
return
if selected_shape is not None:
selected_shape.classList.remove("selected")
print("Selected shape:", event.target)
selected_shape = event.target
await focus_shape(selected_shape)
def unselect_shape(event):