Skip to content

Commit

Permalink
comment out objappend call
Browse files Browse the repository at this point in the history
  • Loading branch information
jooste committed Dec 18, 2024
1 parent 7729c88 commit 8993f44
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion TODO.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# TODO items
## Network branch
- Move ECHO to client
- DEL (in areafilter) looks for screenIO.objappend
- What to do with sharedstates that make changes both ways (like pan/zoom)? Is there more than pan/zoom? Otherwise a different approach can also be taken
Where are pan/zoom used in sim?
= implemented in screen(io).getviewctr() and getviewbounds()
Expand Down
3 changes: 1 addition & 2 deletions bluesky/tools/areafilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ def delete(*args, **kwargs):
return


import bluesky as bs
from bluesky.stack import commandgroup
from bluesky.tools.geo import kwikdist
from bluesky.network.publisher import StatePublisher
Expand Down Expand Up @@ -100,7 +99,7 @@ def deleteArea(areaname):
""" Delete area with name 'areaname'. """
if areaname in basic_shapes:
basic_shapes.pop(areaname)
bs.scr.objappend('', areaname, None)
# bs.scr.objappend('', areaname, None)
polypub.send_delete(polys=[areaname])

def reset():
Expand Down

0 comments on commit 8993f44

Please sign in to comment.