Fenster: Farbe/Strichstärke je Linien-Kategorie im Attribute-Panel einstellbar
Neue per-Öffnung-Übersteuerung (Opening.frameLine/sashLine/sillLineStyle,
je {color?, weight?}) für Blendrahmen+Stulp-/Laibungsblöcke, Flügelrahmen/
Sprossen und die Auf-/Untersicht-Sims-Andeutung separat. Fehlt eine
Übersteuerung, gilt weiterhin der bisherige Default (Opening.color/Haarlinie).
UI: drei neue Zeilen (Farbfeld + Strichstärke) im Objekt-Info-Panel bei
selektiertem Fenster.
This commit is contained in:
@@ -3364,6 +3364,15 @@ export default function App() {
|
||||
onSetOpeningLintelLines: (lintelLines) => {
|
||||
if (selection?.kind === "opening") updateOpening(selection.id, { lintelLines });
|
||||
},
|
||||
onSetOpeningFrameLine: (v) => {
|
||||
if (selection?.kind === "opening") updateOpening(selection.id, { frameLine: v });
|
||||
},
|
||||
onSetOpeningSashLine: (v) => {
|
||||
if (selection?.kind === "opening") updateOpening(selection.id, { sashLine: v });
|
||||
},
|
||||
onSetOpeningSillLineStyle: (v) => {
|
||||
if (selection?.kind === "opening") updateOpening(selection.id, { sillLineStyle: v });
|
||||
},
|
||||
// Typ-Zuweisung (Bibliothek): Tür-/Fenstertyp per typeId; leerer String löst
|
||||
// die Zuweisung wieder (Inline-Verhalten).
|
||||
onSetOpeningType: (typeId) => {
|
||||
|
||||
Reference in New Issue
Block a user