diff --git a/DEVELOPERS.md b/DEVELOPERS.md index 49f9e49..609fa8a 100644 --- a/DEVELOPERS.md +++ b/DEVELOPERS.md @@ -1,14 +1,14 @@ # TODO: link to here from sphinx docs +# Installing dev dependencies +uv pip install -e .[dev] + # Setting up precommit hooks pre-commit install # Fetching submodules git submodule update --recursive --init -# Installing dev dependencies -uv pip install -e .[dev] - # Building documentation sphinx-build -M html source build -a diff --git a/docs/source/kb.rst b/docs/source/kb.rst index 54f0830..2fed949 100644 --- a/docs/source/kb.rst +++ b/docs/source/kb.rst @@ -34,7 +34,7 @@ DZG-004: On Steam Deck, some mods in the Workshop show a black screen when DZGUI --------------------------------------------------------------------------------------------------------- This is a bug in the Steam client that is being tracked at Valve's Steam for Linux issue tracker here: https://github.com/ValveSoftware/steam-for-linux/issues/9598. -To resolve this issue, manually intervene in the Steam client by selecting a different context (e.g., Store, Library), waiting for it to load, then navigating back to the Workshop context. This should +To resolve this issue, manually intervene in the Steam client by selecting a different context (e.g., Store, Library), waiting for it to load, then navigating back to the Workshop context. This should clear the blockage and allow the contents to render. .. _DZG-005: diff --git a/dzgui/views/components/statusbar.py b/dzgui/views/components/statusbar.py index ae4544f..e45ad65 100644 --- a/dzgui/views/components/statusbar.py +++ b/dzgui/views/components/statusbar.py @@ -111,9 +111,9 @@ class Statusbar(Gtk.Grid): context: Union["ServerTab", NotebookPage], ) -> None: self.spinner.stop() - # TODO: CalcDist is being called when table is not loaded + # FIXME: CalcDist is being called when table is not loaded if dist is None: - self.set_by_context(context, "") + return else: pretty = self.append_distance(dist) self.set_by_context(context, pretty)