Search found 2901 matches

by Syres
Mon Apr 22, 2024 2:21 pm
Forum: Help on using FreeCAD
Topic: Curves workbench
Replies: 1847
Views: 445767

Re: Curves workbench

drmacro I converted to using the ColorBar setting in Edit>Preferences>Display>Colors for this a while ago and the adjustment position for the Overlay is a hack but if you change https://github.com/tomate44/CurvesWB/blob/master/freecad/Curves/GeomInfo.py#L370-L397 to: def Activated(self, index=0): i...
by Syres
Fri Apr 19, 2024 4:49 pm
Forum: Python scripting and macros
Topic: How to undock a Toolbar?
Replies: 4
Views: 338

Re: How to undock a Toolbar?

freedman This was a good challenge (for me at least), assuming the user already has an existing docked toolbar called JPS, this works: import FreeCAD as App import FreeCADGui as Gui from PySide import QtGui, QtCore from PySide.QtGui import QToolBar doc = App.ActiveDocument.Name mw = Gui.getMainWind...
by Syres
Thu Apr 18, 2024 9:43 am
Forum: Path/CAM
Topic: Error CAM Simulation
Replies: 5
Views: 429

Re: Error CAM Simulation

I assume the fix has been created here: https://github.com/FreeCAD/FreeCAD/pull/13499/files
by Syres
Sat Apr 13, 2024 5:57 pm
Forum: Help on using FreeCAD
Topic: Appearance settings don't work in dev build
Replies: 1
Views: 241

Re: Appearance settings don't work in dev build

I think a little patience for Monday's PR merge which hopefully will include Werner's fixes see https://github.com/FreeCAD/FreeCAD/pull/13332
by Syres
Thu Apr 11, 2024 6:42 pm
Forum: Help on using FreeCAD
Topic: Transform tool has lost its 3D appearance
Replies: 11
Views: 724

Re: Transform tool has lost its 3D appearance

chrisb wrote: Thu Apr 11, 2024 6:07 pm So is this a regression?
Well the author would say it was designed to look like it does so they would say not, personally I'd have liked the ability to have either but that'll be a mess to code I would imagine. I'll leave it with your very good judgement as to whether an issue should be raised!!
by Syres
Thu Apr 11, 2024 5:10 pm
Forum: Help on using FreeCAD
Topic: Transform tool has lost its 3D appearance
Replies: 11
Views: 724

Re: Transform tool has lost its 3D appearance

@chrisb it's only been like that for at least 6 months, I did ask the author in Sept 23 whether the colours could be make a bit less pastel but didn't get a particularly useful reply see viewtopic.php?t=81445
by Syres
Thu Apr 04, 2024 1:45 pm
Forum: Help on using FreeCAD
Topic: PD Loft selection of second section results in seg fault
Replies: 7
Views: 553

Re: PD Loft selection of second section results in seg fault

@drmacro if you can't fix it yourself, it's probably worth raising with the author, quite a serious regression IMHO
by Syres
Mon Mar 25, 2024 4:56 pm
Forum: TechDraw
Topic: Github Issue re ClipGroup
Replies: 9
Views: 706

Re: Github Issue re ClipGroup

wandererfan as the maintainer of TechDraw can you please ensure those of us who use Techdraw for things other than mechanical/production work (one off stone masonry) can still have the ClipGroup command through the Python Console even if Ondsel dictatorially remove the menu access to the command. O...
by Syres
Sun Mar 24, 2024 12:29 am
Forum: Developers corner
Topic: how do devs keep the software reliable and safe?
Replies: 15
Views: 1332

Re: how do devs keep the software reliable and safe?

The proper way is to write the unit tests before a single line of code is written, see https://bluefruit.co.uk/people/unit-tes ... ts-before/
The tests are run against all new Pull Requests before merging so rigorous tests equals good code and vice versa.