Skip to content

Commit

Permalink
Update TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
garfieldnate committed Aug 5, 2024
1 parent 96e038a commit 06a74ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ NEXT: prioritize features likely needed for preview release
- long-term I'd want menu items for the various actions with their shortcuts listed. Isn't there a way to register
those on Mac? Because cheatsheet can look them up somehow.
- fix SLF4J warnings, and use logging instead of System.out/err
- rename to SVSViewerFX (for standalone apps, noone needs to know it's Java!)
- message in lower-left corner when agent disconnects
- when scene or geometry is removed, need to remove label, too

## Bugs

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public void deleteScene(NameMatcher sceneMatcher) {
case WILDCARD -> scenes.removeWithWildcards(sceneMatcher.namePattern());
default ->
throw new UnsupportedOperationException("Unknown match type " + sceneMatcher.matchType());
// TODO: remove the labels for the deleted geometries
}
}

Expand Down Expand Up @@ -100,7 +101,7 @@ public void deleteGeometry(NameMatcher sceneMatcher, NameMatcher geometryMatcher
default ->
throw new UnsupportedOperationException("Unknown match type " + sceneMatcher.matchType());
}
// TODO: remove the labels for the deleted geometries
// TODO: remove the labels for the deleted geometries
}

// delete scene(s)
Expand Down

0 comments on commit 06a74ff

Please sign in to comment.