Syres916

Results 283 comments of Syres916

@benj5378 I tried `sudo pacman -Rcns python-pivy` on EndeavourOS and it made no difference other than adding a couple of warnings entering Sketcher Edit Mode so I reverted the change.

> As far as my knowledge, no color for hovering Sketcher geometry can be set in Preferences. It can definitely be set in Preferences, the parameter is _BaseApp/Preferences/View/DeactivatedConstrDimColor_ and can...

@benj5378 I think in this instance a picture would have helped clarify what you are getting at, if I now understand you are talking about Preselect Color https://wiki.freecad.org/Preferences_Editor#Selection which is...

> Is this really a good idea? The actual issue is not being addressed I think. All I can say it was changed in https://github.com/FreeCAD/FreeCAD/commit/2a983b587d374f584039797a1846bbb86753593d previously was: `if self.continueCmd:` @tetektoza...

@Roy-043 I'll determine whether this is Qt version specific as I've not seen any reports from Qt5.15.x users and carry out some debugging on when the checkbox/toolbar becomes unavailable.

@furgo16 yep I got it to fail once on Qt5.15.x but as soon as I've added print statements everywhere it's not failing so it sounds like a timing issue that...

@JohnOCFII Courier is specified in at least three places in FreeCAD's code for both _Report View_ and _Editor_ as it appears to be the fallback font if a _monospace_ one...

@xgpt please clarify where you changed Courier to Courier New, just in the Preferences or did you actually change the code and recompile, there is a big difference?

@chennes I have to say there seems to be some double standards going on recently, I was specifically told that new code wasn't to have C `strcmp` and that's exactly...

What's wrong with changing: ``` if (!qApp->styleSheet().isEmpty()) { return {}; } ``` to: ``` auto hGrpView = App::GetApplication().GetParameterGroupByPath( "User parameter:BaseApp/Preferences/MainWindow"); auto qssFile = hGrpView->GetASCII("StyleSheet", ""); if (!qssFile.empty()) { return {};...