From cc240933b50e9eff2c711c3769cc97de2e1dbdf3 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Sun, 7 Jan 2024 11:48:07 -0500 Subject: [PATCH] final small fixes --- docs/pmm/faqs.md | 2 +- docs/stylesheets/extra.css | 4 ---- modules/builder.py | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/pmm/faqs.md b/docs/pmm/faqs.md index b7de80fa..0bcfa09e 100644 --- a/docs/pmm/faqs.md +++ b/docs/pmm/faqs.md @@ -436,7 +436,7 @@ With the release of PMM 1.20, several changes have taken place that we would lik
- The attributes `remove_overlays`, `reset_overlays`, `reapply_overlays` and `schedule_overlays` are now Library Attributes and are called at the library level rather than within `overlay_path. + The attributes `remove_overlays`, `reset_overlays`, `reapply_overlays` and `schedule_overlays` are now Library Attributes and are called at the library level rather than within `overlay_path`. This change has been made to make these attributes consistent with other attributes of a similar nature. diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 271c364d..0951df12 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -63,10 +63,6 @@ strong { text-transform: uppercase; } -.md-typeset code { - word-break: unset; -} - [data-md-color-scheme="slate"] .md-typeset code { background-color: hsl(225deg 8.87% 10.98%); } diff --git a/modules/builder.py b/modules/builder.py index ff0d5924..e07bf467 100644 --- a/modules/builder.py +++ b/modules/builder.py @@ -743,7 +743,7 @@ class CollectionBuilder: logger.debug(f"Value: {data[methods['blank_collection']]}") self.blank_collection = util.parse(self.Type, "blank_collection", self.data, datatype="bool", methods=methods, default=False) - self.sync = self.library.sync_mode == "sync" + self.sync = self.library.sync_mode == "sync" and self.type != "overlay" if "sync_mode" in methods and not self.overlay: logger.debug("") logger.debug("Validating Method: sync_mode")