Search found 20162 matches

by wmayer
Thu Apr 25, 2024 8:11 am
Forum: Open discussion
Topic: New Start page critique
Replies: 2
Views: 62

Re: New Start page critique

Here the link to the PR: https://github.com/FreeCAD/FreeCAD/pull/13604 I have just realized that it has already been merged into main. In a follow-up PR the todos are: Support the widgets of the start page in our Qt style sheet files Remove the note at the top Invert the logic of the check box Some ...
by wmayer
Thu Apr 25, 2024 7:53 am
Forum: Open discussion
Topic: New Start page critique
Replies: 2
Views: 62

Re: New Start page critique

Have you read the title? NOTE: The Start Workbench has been completely rewritten to remove all network access, and to remove its dependency on Chromium. This is still a work-in-progress , and not all settings from the previous version of Start have been migrated yet. Don't forget that this is a deve...
by wmayer
Thu Apr 25, 2024 6:20 am
Forum: Material
Topic: Python examples for ShapeAppearance property?
Replies: 4
Views: 182

Re: Python examples for ShapeAppearance property?

No, that would be awful behaviour. Doing so would add global mutable state to that class which is a bad thing (code smell) and thus should be avoided. The better solution is to have a separate function that reads the user settings and sets it to the given material object.
by wmayer
Wed Apr 24, 2024 5:59 pm
Forum: Material
Topic: Python examples for ShapeAppearance property?
Replies: 4
Views: 182

Re: Python examples for ShapeAppearance property?

I think the constructor of App::PropertyMaterialList should add a single element to the list.
by wmayer
Wed Apr 24, 2024 5:02 pm
Forum: Forum in Deutsch
Topic: RANT: Bin vom git Zustand genervt.
Replies: 10
Views: 358

Re: RANT: Bin vom git Zustand genervt.

Wenn man versucht, den Konstellationen in den Abbildungen zu folgen, kommen doch noch einige größere Fehler zu Tage. Der Einfachheit halbe poste ich nur den Code. Wenn man im Edit-Modus versucht, das Datum-Objekt zu verschieben, dann verhält es sich komplett unintuitiv: doc = App.newDocument() body ...
by wmayer
Wed Apr 24, 2024 4:07 pm
Forum: Forum in Deutsch
Topic: RANT: Bin vom git Zustand genervt.
Replies: 10
Views: 358

Re: RANT: Bin vom git Zustand genervt.

Ich habe den PR gefunden, der die Hilfskreise eingeführt hat und augenscheinlich ist das gar kein Bug, sondern Absicht:
https://github.com/FreeCAD/FreeCAD/pull/12012

Also zumindest erschließt sich mir die Sinnhaftigkeit des Hilfskreis im obigen Szenario nicht so recht.
by wmayer
Wed Apr 24, 2024 3:51 pm
Forum: Forum in Deutsch
Topic: RANT: Bin vom git Zustand genervt.
Replies: 10
Views: 358

Re: RANT: Bin vom git Zustand genervt.

scheinbar filtern die freebsd leute es gut heraus Was filtern die heraus? Bugs? Früher hat man damit aber trotzdem arbeiten können. Das etwas nicht funktioniert hat war selten. Inzwischen ist das die Regel. Ich habe den Eindruck die Entwickler testen das was sie einchecken überhaupt nicht mehr. Ja,...
by wmayer
Tue Apr 23, 2024 3:19 pm
Forum: Forum in Deutsch
Topic: NullShapeException bei Boolscher operation
Replies: 4
Views: 210

Re: NullShapeException bei Boolscher operation

Die Programm-Version ist die etwas betagte 0.20.29410.
by wmayer
Tue Apr 23, 2024 2:47 pm
Forum: Open discussion
Topic: Backport AttachmentSupport to 0.21?
Replies: 9
Views: 516

Re: Backport AttachmentSupport to 0.21?

It's not possible to make Python feature behave exactly like C++ features. For a C++ feature the properties are class members and thus already set at compile time. When an instance is created the properties are registered inside the constructor. Now when restoring the feature from a project file it'...