preview from server, qrcode in apple event pass

This commit is contained in:
Kara Engelhardt
2026-08-11 09:54:14 +02:00
parent 05d5986159
commit 9ecf6892a7
5 changed files with 108 additions and 94 deletions
+2 -1
View File
@@ -231,14 +231,15 @@ class PassStyle:
name: str
# order here limits in what order users can configure field "overspilling" (if too many fields are defined, where should the rest go) -> can only go down in the list
# we evaluate the fields in this order, so they overspill in this order as well (fields from primary are appended to the overspilling field before fields from secondary are etc)
fieldgroups: list[FieldGroup]
preview_layout: str | None
def asdict(self):
return {
"identifier": self.identifier,
"name": self.name,
"fieldgroups": [x.asdict() for x in self.fieldgroups],
"preview_layout": self.preview_layout
}
def layout_schema(self, context):