Search found 20133 matches

by wmayer
Sat Mar 30, 2024 12:17 pm
Forum: Forum in Deutsch
Topic: ubuntu GNOME: Standard-Dateibrowser erzwingen?
Replies: 4
Views: 407

Re: ubuntu GNOME: Standard-Dateibrowser erzwingen?

seit irgendeinem update verwendet meine 0.20.2.29603 (AppImage) nicht mehr den Standard-GNOME-Dateibrowser (mit meinen ganzen Lesezeichen), sondern einen anderen. Kannst Du mal einen Screenshot davon machen? Es könnte der Qt-eigene sein, aber bei AppImages weiß man nie so recht, welche Systembiblio...
by wmayer
Sat Mar 30, 2024 12:08 pm
Forum: Open discussion
Topic: [feature request] Loop counter for preselection so that the zooming of large assemblies is not slowed down
Replies: 6
Views: 415

Re: [feature request] Loop counter for preselection so that the zooming of large assemblies is not slowed down

The forum is the wrong place to open feature requests. This should be done in the issue tracker. I have created it for you now: issue #13230
by wmayer
Fri Mar 29, 2024 4:47 pm
Forum: Assembly
Topic: Integrated Assembly workbench
Replies: 37
Views: 5099

Re: Integrated Assembly workbench

The reason is that (as far as i know) only the object being edited get the mouse move / mouse clicks events from the ViewProvider. You can also register the ViewProvider::eventCallback to the viewer class on your own. Just do it with Gui::View3DInventorViewer* view = ... ViewProviderAssembly* viewP...
by wmayer
Fri Mar 29, 2024 9:52 am
Forum: Help on using FreeCAD
Topic: [ Fixed ] Can't create PD datums with a pre-selection?
Replies: 9
Views: 485

Re: [ Fixed ] Can't create PD datums with a pre-selection?

Issue was fixed a week ago with git commit 105c3363b
Be prepared then to face the issue to be not able to delete sketcher constraints then. (For me that would be even worse.)
A tmp. fix has been committed until the reason of the failure will be figured out.
by wmayer
Fri Mar 29, 2024 9:25 am
Forum: Open discussion
Topic: auto things making life "easier"
Replies: 17
Views: 1155

Re: auto things making life "easier"

Preferences are stored in user.cfg, which I backup regularly. It is a text file, but as it seems to be reordered randomly, different versions are hard to compare. I once wrote a utility that loads a user.cfg, sorts all elements alphabetically and writes out the reordered structure. This way it will...
by wmayer
Thu Mar 28, 2024 12:37 pm
Forum: Assembly
Topic: Integrated Assembly workbench
Replies: 37
Views: 5099

Re: Integrated Assembly workbench

Is it possible to save in the document the object that is currently under edit, so that when the user open again the document the edit mode is automatically started? It's doable. The steps to achieve this are: Extend the ViewStatus enum defined in ViewProvider.h by a further item ActiveObject Exten...
by wmayer
Thu Mar 28, 2024 6:44 am
Forum: Install / Compile
Topic: Windows Visual Studio build fail
Replies: 4
Views: 386

Re: Windows Visual Studio build fail

That's fixed with git commit 360e280c64c56
by wmayer
Wed Mar 27, 2024 11:11 am
Forum: Open discussion
Topic: [REQ] This is a formal request to support the USD format
Replies: 18
Views: 1244

Re: [REQ] This is a formal request to support the USD format

obelisk79 wrote: Wed Mar 27, 2024 10:53 am I'm not sure I understand why it's important.
Because
the USD format is the future of all things 3d.
:D
by wmayer
Wed Mar 27, 2024 10:01 am
Forum: Install / Compile
Topic: obsolete std::random_shuffle functional cause compile failure for FreeCAD 0.21
Replies: 1
Views: 239

Re: obsolete std::random_shuffle functional cause compile failure for FreeCAD 0.21

There is no other way than fixing the flann code. std::random_shuffle can be replaced with std::mt19937 and std::shuffle.

Since FreeCAD 0.21 C++17 is required as the minimum version.