From be51ecbfedee84a0ebc1804fb04c7158dfe98e1c Mon Sep 17 00:00:00 2001 From: Brent Yi Date: Thu, 14 Sep 2023 19:33:14 -0700 Subject: [PATCH] Fix inter-docs references --- docs/source/gui_handles.md | 6 +++--- docs/source/scene_handles.md | 6 +++--- src/viser/_icons_enum.py | 1 + 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/source/gui_handles.md b/docs/source/gui_handles.md index a1671260d..a58c0f685 100644 --- a/docs/source/gui_handles.md +++ b/docs/source/gui_handles.md @@ -4,9 +4,9 @@ A handle is created for each GUI element that is added. Handles can be used to read and write state. When a GUI element is added to a server (for example, via -:func:`ViserServer.add_gui_text()`), state is synchronized between all connected -clients. When a GUI element is added to a client (for example, via -:func:`ClientHandle.add_gui_text()`), state is local to a specific client. +:func:`viser.ViserServer.add_gui_text()`), state is synchronized between all +connected clients. When a GUI element is added to a client (for example, via +:func:`viser.ClientHandle.add_gui_text()`), state is local to a specific client. diff --git a/docs/source/scene_handles.md b/docs/source/scene_handles.md index 9d5d3c6da..7feb481b7 100644 --- a/docs/source/scene_handles.md +++ b/docs/source/scene_handles.md @@ -4,9 +4,9 @@ A handle is created for each object that is added to the scene. These can be used to read and set state, as well as detect clicks. When a scene node is added to a server (for example, via -:func:`ViserServer.add_frame()`), state is synchronized between all connected -clients. When a scene node is added to a client (for example, via -:func:`ClientHandle.add_frame()`), state is local to a specific client. +:func:`viser.ViserServer.add_frame()`), state is synchronized between all +connected clients. When a scene node is added to a client (for example, via +:func:`viser.ClientHandle.add_frame()`), state is local to a specific client. diff --git a/src/viser/_icons_enum.py b/src/viser/_icons_enum.py index 7bcbfd808..4fe8325c6 100644 --- a/src/viser/_icons_enum.py +++ b/src/viser/_icons_enum.py @@ -11,6 +11,7 @@ class Icon(enum.Enum): https://tabler-icons.io/ https://github.com/tabler/tabler-icons """ + ICON_123 = "123" ICON_24_HOURS = "24-hours" ICON_2FA = "2fa"