forked from rerun-io/rerun
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle static text messages in TextLogView gracefully, handle overrid…
…es (rerun-io#6712) ### What First commit wires the `TextLogView` to the override system. Making this part of: * rerun-io#6595 Second commit makes us handle static text without errors. Allowing non-catastrophic behavior when changing the text message: Text run using: ```py import rerun as rr rr.init("rerun_example_text_log", spawn=True) rr.set_time_seconds("t", 0.0) rr.log("log", rr.TextLog("Application started.", level=rr.TextLogLevel.INFO)) rr.set_time_seconds("t", 0.1) rr.log("log", rr.TextLog("Application wumpfed.", level=rr.TextLogLevel.WARN)) rr.set_time_seconds("t", 100.0) rr.log("log", rr.TextLog("Thing happening", color=0xFF9001FF, level=rr.TextLogLevel.ERROR)) ``` https://github.com/rerun-io/rerun/assets/1220815/5c364ca2-65d2-4626-862e-e60ce70cfdaf
- Loading branch information
Showing
4 changed files
with
90 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters