Search found 86 matches

by a.l
Mon Jan 15, 2024 7:38 pm
Forum: Help on using FreeCAD
Topic: [FEATURE REQUEST] spreadsheet zoom
Replies: 19
Views: 5051

Re: [FEATURE REQUEST] spreadsheet zoom

I really hope the feature request comes to fruition! :) In https://forum.freecad.org/viewtopic.php?t=83511 I ask for such a feature as well as a way to detach the spreadsheet view so that it has its own window. That would be really beneficial for users with smaller screens like e.g. laptop users. Th...
by a.l
Sun Jan 14, 2024 12:26 pm
Forum: Open discussion
Topic: Spreadsheet zoom and separate view/window
Replies: 7
Views: 19592

Re: Spreadsheet zoom and separate view/window

mario52 wrote: Sat Jan 13, 2024 11:34 pm Hi
a.l wrote: Thu Dec 14, 2023 8:13 pm 1) Is it possible to somehow zoom in and out of a spreadsheet?
see here Is there a way to zoom a spreadsheet view?

mario
Thanks for sharing :)
To anyone else reading then this is the active feature request: https://github.com/FreeCAD/FreeCAD/issues/6094
by a.l
Fri Jan 12, 2024 9:39 pm
Forum: Open discussion
Topic: Spreadsheet zoom and separate view/window
Replies: 7
Views: 19592

Re: Spreadsheet zoom and separate view/window

Well, poke around enough, and it's obvious - does TILE support what you want? It works for me... freecad.png Thanks for pointing to Tile and Cascade. No, unfortunately it is not what I want. I'm using a laptop where the screen real estate is rather limited, but where it would be really beneficial t...
by a.l
Thu Dec 14, 2023 8:13 pm
Forum: Open discussion
Topic: Spreadsheet zoom and separate view/window
Replies: 7
Views: 19592

Spreadsheet zoom and separate view/window

I have the following two questions re. the spreadsheet functionality in FreeCAD as to get a better overview from time to time e.g. when I have a lot of variables I need to grasp in a spreadsheet: 1) Is it possible to somehow zoom in and out of a spreadsheet? zoom.png 2) And is it possible to pop a s...
by a.l
Tue Aug 30, 2022 3:02 pm
Forum: Python scripting and macros
Topic: Licensing...
Replies: 1
Views: 427

Licensing...

Now that topic again some of you might think. There is a particular reason why I raise it. Question: Does it matter a little or a lot whether new python contributions to FreeCAD "core" is lgpl 2.0+later, lgpl 2.1+later or any other FOSS license? Personally I would preferably just settle fo...
by a.l
Tue Aug 02, 2022 7:15 pm
Forum: Open discussion
Topic: [SOLVED] freecad0.20 continuously crashing when launching
Replies: 8
Views: 3328

Re: freecad0.20 continuously crashing when launching

There are some options to e.g. use software opengl etc: https://wiki.freecadweb.org/Preferences_Editor#Display Remember to click on the table to expand the descriptions Also there is a small mentioning here: https://wiki.freecadweb.org/Frequently_asked_questions#OpenGL_drivers_are_not_installed.2C_o...
by a.l
Tue Aug 02, 2022 1:56 pm
Forum: Open discussion
Topic: [Resolved] 3 lines to crash FreeCAD (reproducible) in Python console
Replies: 17
Views: 3401

Re: 3 lines to crash FreeCAD (reproducible) in Python console

You have interesting point: Crashes if True: print('ü') print('ü') Where this does not crash (printing "ü") if True: print('\u00FC') print('\u00FC') Mmm if pasting code into the Python console in FreeCAD Gui is searching for complications I ponder why it was put there in the first place. I...
by a.l
Tue Aug 02, 2022 1:26 pm
Forum: Open discussion
Topic: [Resolved] 3 lines to crash FreeCAD (reproducible) in Python console
Replies: 17
Views: 3401

Re: 3 lines to crash FreeCAD (reproducible) in Python console

Copy pasting multiple lines of code does have a good use case. E.g. when testing out new code inside the FreeCAD Gui environment as that cannot be done easily with e.g. VSCode or FreeCAD run in App/Command/Console mode only (or at least I believe so :) ). Edit : I am aware about "import importl...
by a.l
Tue Aug 02, 2022 11:18 am
Forum: Open discussion
Topic: [Resolved] 3 lines to crash FreeCAD (reproducible) in Python console
Replies: 17
Views: 3401

[Resolved] 3 lines to crash FreeCAD (reproducible) in Python console

I have "managed" to crash FreeCAD by copy pasting 3 simple lines into the Python Console. It is important to copy paste all lines at once to reproduce. Crash "works" regardless whether a document is loaded or not. I have also tried several lines of code where lines like those bel...