QCAD Bugtracker

QCAD - 2D CAD System.

Click here for a documentation of the DokuWiki formatting syntax that can be used in reports

Please search for existing tasks (also closed ones) before opening a new task.

Please make sure that you are using the latest Version of QCAD before posting a bug (menu Help > Check for Updates)

ID  descCategoryTask TypeSeveritySummaryStatusProgress
 2502 QCAD (main)Bug ReportLow CAM > Nesting: Crash with tabs and multiple instances Closed
100%
Task Description

See also:
https://www.qcad.org/rsforum/viewtopic.php?p=42574#p42574

2501QCAD (main)Feature RequestVery LowAdd spelling checker / spell checker for all text boxesAssigned
0%
1 Task Description

Suggestion to add spelling checker / spell checker for all text boxes

2500QCAD (main)Bug ReportLowQcad 3.28.2 alters color of adjacent text, if certain u...Assigned
0%
Task Description

Qcad alters color of adjacent text, if certain unicode characters are used.

Version:
3.28.2.0 (3.28.2)
Internet:
QCAD.org
Build Date:
Aug 30 2023
Revision:
a8039fc
Qt Version:
5.13.2
Architecture:
x86_64
Compiler:
MSVC++ 14.0 (2015)

Flytracker appears to have the same problem, as this report was rejected when I inserted the same characters into the title. Query {SELECT tag_id FROM `flyspray_list_tag` WHERE (project_id=0 OR project_id=?) AND tag_name LIKE ? ORDER BY project_id} with params {1,} Failed! (Illegal mix of collations (utf8_unicode_ci,IMPLICIT) and (utf8mb4_general_ci,COERCIBLE) for operation ‘like’)

 2499 QCAD (main)Bug ReportLow QCAD font display problem Closed
100%
Task Description

indows10 QCAD3.28.2
I display different fonts in three different CAD software. QCAD displays incorrectly (text display width is incorrect). The attachment is three different CAD display effects. The red mark is where QCAD displays errors.

2498QCAD (main)Bug ReportLowLight/dark mode UI colours depend on OS theme when QCAD...Assigned
0%
1 Task Description

On macOS 14.1 and QCAD 3.28.2, the state of the OS (light or dark theme) affects some of the QCAD colour palette for the life of the session. So far I’ve noticed the problem with the keyboard shortcuts in tooltips and text in the command line output, but there may be other instances of the problem.

To reproduce:

1. Set the OS to light mode.

2. Start QCAD. Note the keyboard shortcuts in the tooltips are optimised for a light palette.

3. With QCAD still running, switch the OS to dark mode.

4. Note that while most of the QCAD interface switches to a dark mode palette, the keyboard shortcuts in the tooltips do not.

A similar behaviour is observed when starting from dark mode and switching to light mode.

I hope that makes sense. See attached screenshots for examples.

2497QCAD (main)Bug ReportVery LowDraw > Circle > 3 Tangents (CT3) fails in some cases wi...Assigned
0%
1 Task Description

Andrew,

See attachment with example:

Solution included on layer ‘Solution’.

Regards,
CVH

 2496 QCAD (main)Bug ReportLow Draw > Ellipse > Inscribed may return rotated or wrong  ...Closed
100%
1 Task Description

Andrew,

In some cases Draw > Ellipse > Inscribed in Quadrilateral (EQ) may return a perfectly healthy result but rotated for 90 degrees.
- Size doesn’t matter.
- Quadrant doesn’t matter.
- Geometrical open or closed base shape doesn’t matter.
- A mirrored base shape usually preforms well.

See attachment with examples.
The incorrect results (red) are rotated 90 degrees around the ellipse center (dotted)
Green is a correct result from a mirrored base shape.

Regards,
CVH

2495ECMAScriptBug ReportVery LowRLine.isParallel(RLine) may return true for certain non...Assigned
0%
1 Task Description

Andrew,

It took me a while to find the source of a certain freak bug I encountered.
I used the RLine.isParallel(RLine) as a test for knowing if line segments were parallel or not.

Included below is script code that mimics the functionally of isParallel().

As far as I know isParallel() is nowhere used in the QCAD open source.
Textual only found in RLine.cpp & .h or under: opennurbs, ecmaapi\generated and ecmagenerator\src.

// Example:
// RShape1: RLine(RShape(address: "0xcd70e28"), startPoint: "RVector(969.219858, -171.914894, 0.000000, 1)", endPoint: "RVector(1010.000000, -140.000000, 0.000000, 1)")
// RShape2: RLine(RShape(address: "0x7659770"), startPoint: "RVector(969.219858, -171.914894, 0.000000, 1)", endPoint: "RVector(930.000000, -340.000000, 0.000000, 1)")
----
var aShape1Angle = shape1.getAngle();    // =0.6640461628266838 rad
var aShape2Angle = shape2.getAngle();    // =4.483157047107694 rad
----
// RLine::isParallel(RLine) -> aTest1 || aTest2
var aTest1 = RMath.isSameDirection(aShape1Angle, aShape2Angle);              // =false
var aTest2 = RMath.isSameDirection(aShape1Angle, aShape2Angle + Math.PI);    // =true
var aTestOr = aTest1 || aTest2;                                              // =>TRUE !?
----
// # BUG # RShape1 is considered as parallel with RShape2
----
// RMath::isSameDirection(dir1, dir2, tol) ... tol = RS.AngleTolerance = 1e-9
// for aTest1 -> ax1Test1 || ax1Test2
var ax1Dif = Math.abs(aShape1Angle - aShape2Angle);    // =3.8191108842810104 rad
var ax1Test1 = ax1Dif < 1e-9;                          // =false
var ax1Test2 = ax1Dif > 2*Math.PI - 1e-9;              // =false
var ax1TestOr = ax1Test1 || ax1Test2;                  // =>FALSE
----
// for aTest2 -> ax2Test1 || ax2Test2
var ax2Dif = Math.abs(aShape1Angle - (aShape2Angle + Math.PI));    // =6.9607035378708035 rad
var ax2Test1 = ax2Dif < 1e-9;                                      // =false
var ax2Test2 = ax2Dif > 2*Math.PI - 1e-9;                          // =true
var ax1TestOr = ax1Test1 || ax1Test2;                              // =>TRUE
----
// # BUG # The second test of the second isSameDirection() test returns true because ax2Dif is over 2pi

Regards,
CVH

2494QCAD (main)Bug ReportVery LowInformation scrip on drawing screen unaligned.Waiting on User
0%
Task Description

Please view the attachment.

Regards

Graeme

 2493 QCAD (main)Bug ReportLow The ruler is not appearing after update to 3.28.2.4 Closed
100%
Task Description

The rulers/ruler ticks disappeared after updating to 3.28.2.4 for Mac.

 2492 QCAD (main)Bug ReportLow Block > Create Library Item: Not working if part librar ...Closed
100%
Task Description

This tool is also being used outside of the part library browser context by some users.

 2491 QCAD/CAMBug ReportLow CAM > Nesting: Fails for duplicate block references Closed
100%
Task Description

- Create a block reference to block “A” - Duplicate block reference
- Nest both block references

Only one block reference is nested, the other one is not placed.

 2490 QCAD (main)Bug ReportLow File > SVG Export: wrong line color (Qt 6) Closed
100%
Task Description

Some colored lines are exported as black on macOS M1 / Qt 6.

 2489 QCAD (main)Bug ReportLow Prints A1 instead of drawing  Closed
100%
Task Description

All I get when I print is an “A1”, which I believe is the drawing size

 2488 QCAD (main)Feature RequestLow Not saved/loaded custom properties when the title is no ...Closed
100%
1 Task Description

Andrew,

Discovered in writing a custom tool:
hatchEntity.setCustomProperty(”MijnEPB”, “Ruimte”, roomData.numberText);
Works perfectly and I can retrieve the room numbers of all semi-automatically placed hatches in this instance of QCAD.

But I can not store and reload this file with these custom properties to use them in a new QCAD session.
I then assume the title must be ‘QCAD’.
Then I wonder how QCAD handles custom properties by other CAD applications.
Are they also removed on loading/writing?

QCAD doesn’t list these custom properties in the Property Editor.
Here hidden was fine unless they are not stored with the document.

Is it even possible to store them in the drawing file?
Why is the title a required variable when it can’t differ from ‘QCAD’?
Would it be possible to list them up in the Property Editor because I know they are filtered on title ‘QCAD’.

For now I revert to:
hatchEntity.setCustomProperty(”QCAD”, “EPB-Ruimte”, roomData.numberText);
Similar as the CAM tool that uses ‘Cam....’ for all keys.

Regards,
CVH

 2487 QCAD (main)SuggestionVery Low Dutch translations typos Closed
100%
1 Task Description

Andrew,

For the dutch translations:

- The tooltip for the close icon of a tab is “Close tab”

“Sluit tab”.

- When the drawing was changed the confirmation dialog second option is “Discard”

“Verwerpen” or “Niet opslaan”.
... Reading several discussions the latter is the better translation.

- Found in the Drawing Prefs and also used in the App.Prefs (DIMLUNIT):
> Bewerken
.> Tekeningsvoorkeuren
..> Bemating
...> Bematingsvoorkeuren
....> Tekstformaat
.....> Liniaire bemating

This must be “Lineaire bemating”

Regards,
CVH

 2486 Command line toolsBug ReportLow dwgnest: part multiplicator switch (-u) has no effect Closed
100%
Task Description

-u / -multiplier switch has no effect (option applied to later during initialization of nester).

 2485 QCAD (main)Bug ReportLow Application Preference "Dimension Settings > Text above ...Closed
100%
Task Description

In QCAD Pro, I found that setting the application preference to disable “Text above dimension line” does not transfer to new drawings.

My setup:
QCAD Professional version: 3.28.1.0
Date: Mar 30 2023
Qt version: 5.8.0
Compiler version: gcc 4.8.1
Build date: Mar 30 2023
Revision: ca7ec144abd203d2a68ca91c0ff0684868ba08a5

OS: Xubuntu 23.04
Kernel: 6.2.0-25-generic
Resolution: 1920×1200 DE: Xfce 4.18
WM: Xfwm4

Demonstration procedure follows:

Fresh install QCAD Pro (no previous config file);

Edit –> Application Preferences

Under “Defaults for New Drawings”, select “Dimension Settings”

Under “Dimension Style”, “Text above dimension line” is enabled by default. Uncheck it, then press Apply button.

Change one or more other settings; for instance “Linear Dimensions” to Decimal, or the Precision. Press Apply button accordingly.

Press OK button to dismiss Application Preferences.

Quit out of QCAD Pro.

Reopen QCAD Pro. Create something that can be dimensioned, and dimension it. Label will appear above the dimension line.

Edit –> Drawing Preferences

Under “Dimension Style”, “Text above dimension line” is checked, contrary to the Application Preference setting. The other preference settings are in effect.

 2484 QCAD (main)Bug ReportLow Crash (or quit?) when checking for QCAD Pro updates Closed
100%
Task Description

QCAD Pro crashes (or quits; there’s no crash report dialog shown) if I select Help–> Check for QCAD Pro Updates.

I’ve tried uninstalling and reinstalling QCAD, and the configuration file. Doesn’t help.

QCAD Professional version: 3.28.1.0
Date: Mar 30 2023
Qt version: 5.8.0
Compiler version: gcc 4.8.1
Build date: Mar 30 2023
Revision: ca7ec144abd203d2a68ca91c0ff0684868ba08a5

xubuntu 23.04 6.2.0-25-generic

2483QCAD (main)Bug ReportLowFile > Open: MLeaders with text not importedAssigned
0%
Task Description

See also:
https://www.qcad.org/rsforum/viewtopic.php?f=33&t=10159

2482QCAD (main)Bug ReportLowRShape::getIntersectionPointsCC still failing for touch...Assigned
0%
1 Task Description

Andrew,

Referring to this forum post:
https://www.qcad.org/rsforum/viewtopic.php?f=74&t=10152

With radii 1341.35667735 and 26 the relative tolerance is 0.00683678 and exceeds the former used fixed tolerance of 1e-4.

These arcs will then be considered to be tangent and the intersection point is 0.31024 units to the left of where we expect it.

Implemented: https://github.com/qcad/qcad/commit/77ae3e4518cc34f178779d2d2c724adcf80c229d#diff-dcc4e31eaeaed5a047f65dbce4ddda4bcd4d604e9e1005ee8481ded273768449

Updated: https://github.com/qcad/qcad/commit/071b60acd1176e6301bf6b6fcf716684221a97e8#diff-dcc4e31eaeaed5a047f65dbce4ddda4bcd4d604e9e1005ee8481ded273768449

I had already expressed my reserves on the relative tolerance but that was already a better solution for small arcs:
https://www.qcad.org/rsforum/viewtopic.php?f=33&t=8775&p=34907#p34907

We could limit the tolerance by:
A- The smallest of the fixed and the relative.
B- A relative tolerance based on R2 there circle 1 is forced to be the larger one.

This will never account for the position in the plane.
At a certain point the tolerance will be less than the accuracy/certainty of the values.

Regards,
CVH

 2481 QCAD (main)Bug ReportLow Program crash with print preview Closed
100%
Task Description

I often have an unusual program crash when switching to print preview and back several times.
The first click on print preview shows no reaction. On the second click, ok.
After two or three changes, a program crash suddenly appears after a few seconds.
Even with an empty document.
I work on Win 10 with i7-10700KF (not overclocked), GeForce RTX 2070 super,
EPSON ET-2820 Series (Microsoft IPP Class Driver) and with QCAD 3.28.1.0.
Up to now I have worked with 3.17.xx (without problems) and upgraded to QCAD 3.28.1 yesterday 06/19/2032.
I find the program very good and have always been able to draw my private projects well and efficiently on paper.
But I can’t work with this error.
Thank you in advance for your help

 2480 QCAD (main)Feature RequestLow Edit block in-place (BB) can't be terminated with Esc o ...Closed
100%
Task Description

Despite the toolbar “Cancel” option it would be nice if we could terminate BB also with an “Esc” or “QQ” keystroke like every other tool. ;-)

 2479 QCAD (main)Bug ReportLow Draw > Polyline > Delete Node(s): inconsistencies when  ...Closed
100%
1 Task Description

Andrew,

Deleting a node of a polyline (OD) followed by Undo (OO) while OD is still in ChoosingNode state and then deleting another node returns a polyline where both nodes are removed.

this.polylineEntity is set once in pickEntity() altered after pickCoordinate() and a clone is returned to the drawing.
The next pickCoordinate() continues with altering this.polylineEntity without retrieving the current form and is thus unaware that the former action might be undone.

The work around to undo a removal is first to terminate (QQ) PolylineDeleteNode then Undo (OO) and then start over with selecting the polyline and indicating nodes.

While adding nodes (OA) we can simply undo the last action and continue adding nodes.

Because the new entity has the same id as the initially one ...
... It should be possible to re-retrieve the actual entity by id in pickCoordinate() or deleteNode().

Regards,
CVH

2478QCAD (main)Feature RequestLowMake RMathLineEdit unit awareAssigned
0%
1 Task Description

Andrew,

Related topic: https://www.qcad.org/rsforum/viewtopic.php?f=32&t=10094

When entering 1’ 1’‘ in an input field.
- As the size of the rectangle in the topic
- As the length property of a line selected in the drawing
- ....

Returns 13 in a drawing in mm.
And also in a drawing in inch what turns out to be correct.
But also in a drawing in foot.

Similar, entering 1’ with a drawing in kilometers it returns 12 units = 12 kilometers.

Regards,
CVH

 2477 QCAD (main)Bug ReportLow Edit > Application Preferences: color preferences show  ...Closed
100%
Task Description

Qt 6 compiled binaries show wrong default colors in preferences (always black).

 2476 QCAD (main)Bug ReportLow Draw > Circle > Circle3P: Creates null-circle with co-l ...Closed
100%
Task Description

Andrew,

With 3 co-linear points:
- Arc3P will warn the user that an arc can’t be created (Line 141).
- Circle3P creates a null-circle without issuing a similar warning (Line 149).

The difference sits in ShapeAlgorithms.js
- ShapeAlgorithms.createArcFrom3Points Line 1465 checks if the returned arc isValid.
- ShapeAlgorithms.createCircleFrom3Points Line 1436 checks if the returned circle isNull.

Similar as RArc.cpp at Line 108 RCircle.cpp returns an RCircle() at Line 74 when there is no intersection of the two middle lines.
An RCircle() isn’t a valid circle as such but it is not nothing.

The error from ShapeAlgorithms.js is also treated somewhat different in the pickCoordinate event of Arc3P vs Circle3P.

Regards,
CVH

 2472 QCAD (main)Bug ReportLow Modify > Explode: Arc in non-uniformly scaled block exp ...Closed
100%
Task Description

Andrew,

When we explode a non-uniform scaled block with arcs, the returned ellipses do not inherent the general properties of the block like other entities do.
They are exploded use the default properties that we can alter in the PEN toolbar for example.

Regards,
CVH

2471QCAD (main)Feature RequestLowTool request: Arc - 2 Tangents and radius ...Assigned
0%
2 Task Description

... inclusive trim option ;-)

I’m already able to use the Circle tool “2 Tangents and radius” to accomplish this task but it is a lot of break out etc. action needed to clean the shape afterward.

 2470 QCAD (main)Bug ReportLow Background color not stored for layout block Closed
100%
Task Description

Background color of current layout block (property “ColorSettings/BackgroundColor” of type QColor) is not saved in DXF/DWG.

See also:
https://www.qcad.org/rsforum/viewtopic.php?f=33&t=10049

 2469 QCAD (main)Bug ReportLow Invisible switch fails partly at Block Reference with A ...Closed
100%
1 Task Description

A block with attributes inserted into Model_Space can’t be made completely invisible with the invisible switch (Eye icon) in the block list. It works for entities but not on attributes.

 2468 QCAD (main)Bug ReportLow Library Browser: editing items not working Closed
100%
Task Description

The context menu to edit items might or might not work, depending on the platform.

2467QCAD (main)Bug ReportLowmacOS M1/M2 setup with multiple screens: crash during i...Assigned
0%
Task Description

I sometimes start QCAD Pro on a project and then go do something else after a while, leaving it open in the background.

At least 5 times now it died in this state, in the background, without user activity, giving me the ‘quit unexpectedly’ dialog.

Here’s some part of the log that macOS collects when that happens:

-------------------------------------
Translated Report (Full Report Below)
-------------------------------------

Process:               QCAD-Pro [62952]
Path:                  /Applications/QCAD-Pro.app/Contents/MacOS/QCAD-Pro
Identifier:            org.qcad
Version:               3.28 (3.28.0)
Code Type:             ARM-64 (Native)
Parent Process:        launchd [1]
User ID:               501

Date/Time:             2023-04-15 15:39:31.3443 +0200
OS Version:            macOS 13.3.1 (22E261)
Report Version:        12
Anonymous UUID:        7BF39A64-2E31-A624-4A66-896554C6DEC0

Sleep/Wake UUID:       8D811F79-BAFA-4D25-BDA4-DF99AEE2DE0E

Time Awake Since Boot: 300000 seconds
Time Since Wake:       1 seconds

System Integrity Protection: enabled

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000018
Exception Codes:       0x0000000000000001, 0x0000000000000018

Termination Reason:    Namespace SIGNAL, Code 11 Segmentation fault: 11
Terminating Process:   exc handler [62952]

VM Region Info: 0x18 is not in any region.  Bytes before following region: 105553518919656
      REGION TYPE                    START - END         [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL
      UNUSED SPACE AT START
--->  
      MALLOC_NANO (reserved)   600018000000-600020000000 [128.0M] rw-/rwx SM=NUL  ...(unallocated)

Thread 0 Crashed::  Dispatch queue: com.apple.main-thread
0   QtGui                         	       0x104c3b884 QMacCGContext::QMacCGContext(QPainter*) + 44
1   libqmacstyle.dylib            	       0x1063fe838 0x1063f4000 + 43064
2   libqmacstyle.dylib            	       0x106405fec 0x1063f4000 + 73708
3   QtWidgets                     	       0x1055263e4 QCommonStyle::drawControl(QStyle::ControlElement, QStyleOption const*, QPainter*, QWidget const*) const + 2132
4   libqmacstyle.dylib            	       0x10640379c 0x1063f4000 + 63388
5   QtWidgets                     	       0x105562000 0x1054b4000 + 712704
6   QtWidgets                     	       0x10568c474 QTabBar::paintEvent(QPaintEvent*) + 1584
7   QtWidgets                     	       0x105508f70 QWidget::event(QEvent*) + 132
8   QtWidgets                     	       0x10568bcd4 QTabBar::event(QEvent*) + 736
9   QtWidgets                     	       0x1054bf520 QApplicationPrivate::notify_helper(QObject*, QEvent*) + 272
10  QtWidgets                     	       0x1054c0ffc QApplication::notify(QObject*, QEvent*) + 3396
11  QtCore                        	       0x1065b7570 QCoreApplication::notifyInternal2(QObject*, QEvent*) + 292
12  QtWidgets                     	       0x1054fc214 QWidgetPrivate::drawWidget(QPaintDevice*, QRegion const&, QPoint const&, QFlags<QWidgetPrivate::DrawWidgetFlag>, QPainter*, QWidgetRepaintManager*) + 3312
13  QtWidgets                     	       0x105503890 QWidgetPrivate::paintSiblingsRecursive(QPaintDevice*, QList<QObject*> const&, int, QRegion const&, QPoint const&, QFlags<QWidgetPrivate::DrawWidgetFlag>, QPainter*, QWidgetRepaintManager*) + 864
14  QtWidgets                     	       0x105503780 QWidgetPrivate::paintSiblingsRecursive(QPaintDevice*, QList<QObject*> const&, int, QRegion const&, QPoint const&, QFlags<QWidgetPrivate::DrawWidgetFlag>, QPainter*, QWidgetRepaintManager*) + 592
15  QtWidgets                     	       0x105503780 QWidgetPrivate::paintSiblingsRecursive(QPaintDevice*, QList<QObject*> const&, int, QRegion const&, QPoint const&, QFlags<QWidgetPrivate::DrawWidgetFlag>, QPainter*, QWidgetRepaintManager*) + 592
16  QtWidgets                     	       0x105503780 QWidgetPrivate::paintSiblingsRecursive(QPaintDevice*, QList<QObject*> const&, int, QRegion const&, QPoint const&, QFlags<QWidgetPrivate::DrawWidgetFlag>, QPainter*, QWidgetRepaintManager*) + 592
17  QtWidgets                     	       0x105503780 QWidgetPrivate::paintSiblingsRecursive(QPaintDevice*, QList<QObject*> const&, int, QRegion const&, QPoint const&, QFlags<QWidgetPrivate::DrawWidgetFlag>, QPainter*, QWidgetRepaintManager*) + 592
18  QtWidgets                     	       0x1054fc314 QWidgetPrivate::drawWidget(QPaintDevice*, QRegion const&, QPoint const&, QFlags<QWidgetPrivate::DrawWidgetFlag>, QPainter*, QWidgetRepaintManager*) + 3568
19  QtWidgets                     	       0x105519aec QWidgetRepaintManager::paintAndFlush() + 3872
20  QtWidgets                     	       0x105519d70 QWidgetRepaintManager::sync() + 252
21  QtWidgets                     	       0x105509410 QWidget::event(QEvent*) + 1316
22  QtWidgets                     	       0x105624f10 QMainWindow::event(QEvent*) + 248
23  QtWidgets                     	       0x1054bf520 QApplicationPrivate::notify_helper(QObject*, QEvent*) + 272
24  QtWidgets                     	       0x1054c0ffc QApplication::notify(QObject*, QEvent*) + 3396
25  QtCore                        	       0x1065b7570 QCoreApplication::notifyInternal2(QObject*, QEvent*) + 292
26  QtWidgets                     	       0x105516800 QWidgetRepaintManager::sendUpdateRequest(QWidget*, QWidgetRepaintManager::UpdateTime) + 604
27  QtWidgets                     	       0x105516540 void QWidgetRepaintManager::markDirty<QRect>(QRect const&, QWidget*, QWidgetRepaintManager::UpdateTime, QWidgetRepaintManager::BufferState) + 1748
28  QtWidgets                     	       0x10551fdcc 0x1054b4000 + 441804
29  QtCore                        	       0x106600ce4 0x106550000 + 724196
30  QtGui                         	       0x1049b47c4 QWindowPrivate::emitScreenChangedRecursion(QScreen*) + 80
31  QtGui                         	       0x1049aa348 QScreen::~QScreen() + 700
32  QtGui                         	       0x1049aa3b0 QScreen::~QScreen() + 12
33  QtGui                         	       0x1049bec7c QWindowSystemInterface::handleScreenRemoved(QPlatformScreen*) + 36
34  libqcocoa.dylib               	       0x103de7d80 0x103db8000 + 195968
35  libqcocoa.dylib               	       0x103de65d0 0x103db8000 + 189904
36  libqcocoa.dylib               	       0x103dfb014 0x103db8000 + 274452
37  QtCore                        	       0x1065c63d8 QMetaMethod::invoke(QObject*, Qt::ConnectionType, QGenericReturnArgument, QGenericArgument, QGenericArgument, QGenericArgument, QGenericArgument, QGenericArgument, QGenericArgument, QGenericArgument, QGenericArgument, QGenericArgument, QGenericArgument) const + 1072
38  libqcocoa.dylib               	       0x103dfe45c 0x103db8000 + 287836
39  CoreFoundation                	       0x18e193240 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 128
40  CoreFoundation                	       0x18e22ef30 ___CFXRegistrationPost_block_invoke + 88
41  CoreFoundation                	       0x18e22ee78 _CFXRegistrationPost + 440
42  CoreFoundation                	       0x18e164580 _CFXNotificationPost + 704
43  Foundation                    	       0x18f0c19e4 -[NSNotificationCenter postNotificationName:object:userInfo:] + 88
44  AppKit                        	       0x1915834bc __67-[NSWindow _updateSettingsSendingScreenChangeNotificationToScreen:]_block_invoke + 496
45  AppKit                        	       0x1913ff7e0 NSPerformVisuallyAtomicChange + 108
46  AppKit                        	       0x1915832c0 -[NSWindow _updateSettingsSendingScreenChangeNotificationToScreen:] + 96
47  AppKit                        	       0x1916c3ec0 -[NSWindow _screenChanged:] + 136
48  AppKit                        	       0x1916c3e18 -[NSWindow _displayChangedSoAdjustWindows:] + 112
49  AppKit                        	       0x191d3156c -[_NSFullScreenContentController displayChanged] + 28
50  AppKit                        	       0x191dd5834 -[_NSFullScreenSpace displayChanged] + 48
51  AppKit                        	       0x191dd4504 _fullScreenInstanceMovedSpaces + 208
52  SkyLight                      	       0x192da9e34 (anonymous namespace)::notify_datagram_handler(unsigned int, CGSDatagramType, void*, unsigned long, void*) + 888
53  SkyLight                      	       0x1930e9c84 CGSDatagramReadStream::dispatchMainQueueDatagrams() + 228
54  SkyLight                      	       0x1930e9b80 invocation function for block in CGSDatagramReadStream::mainQueueWakeup() + 28
55  libdispatch.dylib             	       0x18df0e874 _dispatch_call_block_and_release + 32
56  libdispatch.dylib             	       0x18df10400 _dispatch_client_callout + 20
57  libdispatch.dylib             	       0x18df1ebf8 _dispatch_main_queue_drain + 928
58  libdispatch.dylib             	       0x18df1e848 _dispatch_main_queue_callback_4CF + 44
59  CoreFoundation                	       0x18e1dfc88 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 16
60  CoreFoundation                	       0x18e19d4a8 __CFRunLoopRun + 1992
61  CoreFoundation                	       0x18e19c58c CFRunLoopRunSpecific + 612
62  HIToolbox                     	       0x1979d1df4 RunCurrentEventLoopInMode + 292
63  HIToolbox                     	       0x1979d1c30 ReceiveNextEventCommon + 648
64  HIToolbox                     	       0x1979d1988 _BlockUntilNextEventMatchingListInModeWithFilter + 76
65  AppKit                        	       0x1913bbf58 _DPSNextEvent + 636
66  AppKit                        	       0x1913bb0f4 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 716
67  AppKit                        	       0x1913af558 -[NSApplication run] + 464
68  libqcocoa.dylib               	       0x103dcd0d8 0x103db8000 + 86232
69  QtCore                        	       0x1065c0994 QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) + 532
70  QtCore                        	       0x1065b7c0c QCoreApplication::exec() + 128
71  libqcadjsapi.dylib            	       0x116ab5648 QCoreApplication_WrapperSingleton::exec() + 24
72  libqcadjsapi.dylib            	       0x11625d1b8 QCoreApplication_WrapperSingleton::qt_static_metacall(QObject*, QMetaObject::Call, int, void**) + 684
73  libqcadjsapi.dylib            	       0x11625d930 QCoreApplication_WrapperSingleton::qt_metacall(QMetaObject::Call, int, void**) + 100
74  QtQml                         	       0x1045e58f8 0x1044b8000 + 1235192
75  QtQml                         	       0x1045e245c 0x1044b8000 + 1221724
76  QtQml                         	       0x1045e0f30 QV4::QObjectMethod::callInternal(QV4::Value const*, QV4::Value const*, int) const + 956
77  QtQml                         	       0x1045fef88 QV4::Runtime::CallProperty::call(QV4::ExecutionEngine*, QV4::Value const&, int, QV4::Value*, int) + 420
78  QtQml                         	       0x10462bc00 0x1044b8000 + 1522688
79  QtQml                         	       0x10462aaec 0x1044b8000 + 1518316
80  QtQml                         	       0x1045a5c18 0x1044b8000 + 973848
81  QtQml                         	       0x1045fef88 QV4::Runtime::CallProperty::call(QV4::ExecutionEngine*, QV4::Value const&, int, QV4::Value*, int) + 420
82  QtQml                         	       0x10462bc00 0x1044b8000 + 1522688
83  QtQml                         	       0x10462aaec 0x1044b8000 + 1518316
84  QtQml                         	       0x1045a5c18 0x1044b8000 + 973848
85  QtQml                         	       0x1045fed60 QV4::Runtime::CallName::call(QV4::ExecutionEngine*, int, QV4::Value*, int) + 388
86  QtQml                         	       0x10462c11c 0x1044b8000 + 1523996
87  QtQml                         	       0x10462aaec 0x1044b8000 + 1518316
88  QtQml                         	       0x1045a2744 QV4::Function::call(QV4::Value const*, QV4::Value const*, int, QV4::ExecutionContext*) + 368
89  QtQml                         	       0x104603dfc QV4::Script::run(QV4::Value const*) + 228
90  QtQml                         	       0x10454a5a0 QJSEngine::evaluate(QString const&, QString const&, int, QList<QString>*) + 336
91  libqcadjsapi.dylib            	       0x11692bf9c RScriptHandlerJs::doScript(QString const&, QList<QString> const&) + 336
92  libqcadcore.dylib             	       0x1036fd5b8 RScriptHandler::autostart(QString const&, QList<QString> const&) + 2000
93  QCAD-Pro                      	       0x102f7d87c main + 4996
94  dyld                          	       0x18dd67f28 start + 2236

Thread 1:: com.apple.CFSocket.private
0   libsystem_kernel.dylib        	       0x18e08aff0 __select + 8
1   CoreFoundation                	       0x18e1c81e8 __CFSocketManager + 636
2   libsystem_pthread.dylib       	       0x18e0bffa8 _pthread_start + 148
3   libsystem_pthread.dylib       	       0x18e0bada0 thread_start + 8

Thread 2:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	       0x18e07ff14 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x18e092240 mach_msg2_internal + 80
2   libsystem_kernel.dylib        	       0x18e088b78 mach_msg_overwrite + 604
3   libsystem_kernel.dylib        	       0x18e080290 mach_msg + 24
4   CoreFoundation                	       0x18e19e8b8 __CFRunLoopServiceMachPort + 160
5   CoreFoundation                	       0x18e19d198 __CFRunLoopRun + 1208
6   CoreFoundation                	       0x18e19c58c CFRunLoopRunSpecific + 612
7   AppKit                        	       0x1914e6508 _NSEventThread + 172
8   libsystem_pthread.dylib       	       0x18e0bffa8 _pthread_start + 148
9   libsystem_pthread.dylib       	       0x18e0bada0 thread_start + 8

Thread 3:
0   libsystem_pthread.dylib       	       0x18e0bad8c start_wqthread + 0

Thread 4:
0   libsystem_pthread.dylib       	       0x18e0bad8c start_wqthread + 0

Thread 5:: Thread (pooled)
0   libsystem_kernel.dylib        	       0x18e083710 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x18e0c0574 _pthread_cond_wait + 1232
2   QtCore                        	       0x1067282f4 0x106550000 + 1934068
3   QtCore                        	       0x106727fac 0x106550000 + 1933228
4   QtCore                        	       0x106727ed8 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 108
5   QtCore                        	       0x106722630 0x106550000 + 1910320
6   QtCore                        	       0x10671e374 0x106550000 + 1893236
7   libsystem_pthread.dylib       	       0x18e0bffa8 _pthread_start + 148
8   libsystem_pthread.dylib       	       0x18e0bada0 thread_start + 8

Thread 6:: Thread (pooled)
0   libsystem_kernel.dylib        	       0x18e083710 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x18e0c0574 _pthread_cond_wait + 1232
2   QtCore                        	       0x1067282f4 0x106550000 + 1934068
3   QtCore                        	       0x106727fac 0x106550000 + 1933228
4   QtCore                        	       0x106727ed8 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 108
5   QtCore                        	       0x106722630 0x106550000 + 1910320
6   QtCore                        	       0x10671e374 0x106550000 + 1893236
7   libsystem_pthread.dylib       	       0x18e0bffa8 _pthread_start + 148
8   libsystem_pthread.dylib       	       0x18e0bada0 thread_start + 8

Thread 7:: Thread (pooled)
0   libsystem_kernel.dylib        	       0x18e083710 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x18e0c0574 _pthread_cond_wait + 1232
2   QtCore                        	       0x1067282f4 0x106550000 + 1934068
3   QtCore                        	       0x106727fac 0x106550000 + 1933228
4   QtCore                        	       0x106727ed8 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 108
5   QtCore                        	       0x106722630 0x106550000 + 1910320
6   QtCore                        	       0x10671e374 0x106550000 + 1893236
7   libsystem_pthread.dylib       	       0x18e0bffa8 _pthread_start + 148
8   libsystem_pthread.dylib       	       0x18e0bada0 thread_start + 8

Thread 8:: Thread (pooled)
0   libsystem_kernel.dylib        	       0x18e083710 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x18e0c0574 _pthread_cond_wait + 1232
2   QtCore                        	       0x1067282f4 0x106550000 + 1934068
3   QtCore                        	       0x106727fac 0x106550000 + 1933228
4   QtCore                        	       0x106727ed8 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 108
5   QtCore                        	       0x106722630 0x106550000 + 1910320
6   QtCore                        	       0x10671e374 0x106550000 + 1893236
7   libsystem_pthread.dylib       	       0x18e0bffa8 _pthread_start + 148
8   libsystem_pthread.dylib       	       0x18e0bada0 thread_start + 8

Thread 9:: Thread (pooled)
0   libsystem_kernel.dylib        	       0x18e083710 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x18e0c0574 _pthread_cond_wait + 1232
2   QtCore                        	       0x1067282f4 0x106550000 + 1934068
3   QtCore                        	       0x106727fac 0x106550000 + 1933228
4   QtCore                        	       0x106727ed8 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 108
5   QtCore                        	       0x106722630 0x106550000 + 1910320
6   QtCore                        	       0x10671e374 0x106550000 + 1893236
7   libsystem_pthread.dylib       	       0x18e0bffa8 _pthread_start + 148
8   libsystem_pthread.dylib       	       0x18e0bada0 thread_start + 8

Thread 10:: Thread (pooled)
0   libsystem_kernel.dylib        	       0x18e083710 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x18e0c0574 _pthread_cond_wait + 1232
2   QtCore                        	       0x1067282f4 0x106550000 + 1934068
3   QtCore                        	       0x106727fac 0x106550000 + 1933228
4   QtCore                        	       0x106727ed8 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 108
5   QtCore                        	       0x106722630 0x106550000 + 1910320
6   QtCore                        	       0x10671e374 0x106550000 + 1893236
7   libsystem_pthread.dylib       	       0x18e0bffa8 _pthread_start + 148
8   libsystem_pthread.dylib       	       0x18e0bada0 thread_start + 8

Thread 11:: Thread (pooled)
0   libsystem_kernel.dylib        	       0x18e083710 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x18e0c0574 _pthread_cond_wait + 1232
2   QtCore                        	       0x1067282f4 0x106550000 + 1934068
3   QtCore                        	       0x106727fac 0x106550000 + 1933228
4   QtCore                        	       0x106727ed8 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 108
5   QtCore                        	       0x106722630 0x106550000 + 1910320
6   QtCore                        	       0x10671e374 0x106550000 + 1893236
7   libsystem_pthread.dylib       	       0x18e0bffa8 _pthread_start + 148
8   libsystem_pthread.dylib       	       0x18e0bada0 thread_start + 8

Thread 12:: Thread (pooled)
0   libsystem_kernel.dylib        	       0x18e083710 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x18e0c0574 _pthread_cond_wait + 1232
2   QtCore                        	       0x1067282f4 0x106550000 + 1934068
3   QtCore                        	       0x106727fac 0x106550000 + 1933228
4   QtCore                        	       0x106727ed8 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 108
5   QtCore                        	       0x106722630 0x106550000 + 1910320
6   QtCore                        	       0x10671e374 0x106550000 + 1893236
7   libsystem_pthread.dylib       	       0x18e0bffa8 _pthread_start + 148
8   libsystem_pthread.dylib       	       0x18e0bada0 thread_start + 8

Thread 13:: Thread (pooled)
0   libsystem_kernel.dylib        	       0x18e083710 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x18e0c0574 _pthread_cond_wait + 1232
2   QtCore                        	       0x1067282f4 0x106550000 + 1934068
3   QtCore                        	       0x106727fac 0x106550000 + 1933228
4   QtCore                        	       0x106727ed8 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 108
5   QtCore                        	       0x106722630 0x106550000 + 1910320
6   QtCore                        	       0x10671e374 0x106550000 + 1893236
7   libsystem_pthread.dylib       	       0x18e0bffa8 _pthread_start + 148
8   libsystem_pthread.dylib       	       0x18e0bada0 thread_start + 8

Thread 14:: Thread (pooled)
0   libsystem_kernel.dylib        	       0x18e083710 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x18e0c0574 _pthread_cond_wait + 1232
2   QtCore                        	       0x1067282f4 0x106550000 + 1934068
3   QtCore                        	       0x106727fac 0x106550000 + 1933228
4   QtCore                        	       0x106727ed8 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 108
5   QtCore                        	       0x106722630 0x106550000 + 1910320
6   QtCore                        	       0x10671e374 0x106550000 + 1893236
7   libsystem_pthread.dylib       	       0x18e0bffa8 _pthread_start + 148
8   libsystem_pthread.dylib       	       0x18e0bada0 thread_start + 8

Thread 15:: Thread (pooled)
0   libsystem_kernel.dylib        	       0x18e083710 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x18e0c0574 _pthread_cond_wait + 1232
2   QtCore                        	       0x1067282f4 0x106550000 + 1934068
3   QtCore                        	       0x106727fac 0x106550000 + 1933228
4   QtCore                        	       0x106727ed8 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 108
5   QtCore                        	       0x106722630 0x106550000 + 1910320
6   QtCore                        	       0x10671e374 0x106550000 + 1893236
7   libsystem_pthread.dylib       	       0x18e0bffa8 _pthread_start + 148
8   libsystem_pthread.dylib       	       0x18e0bada0 thread_start + 8

Thread 16:: Thread (pooled)
0   libsystem_kernel.dylib        	       0x18e083710 __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x18e0c0574 _pthread_cond_wait + 1232
2   QtCore                        	       0x1067282f4 0x106550000 + 1934068
3   QtCore                        	       0x106727fac 0x106550000 + 1933228
4   QtCore                        	       0x106727ed8 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 108
5   QtCore                        	       0x106722630 0x106550000 + 1910320
6   QtCore                        	       0x10671e374 0x106550000 + 1893236
7   libsystem_pthread.dylib       	       0x18e0bffa8 _pthread_start + 148
8   libsystem_pthread.dylib       	       0x18e0bada0 thread_start + 8


Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000000   x1: 0x000000016ce88f28   x2: 0x000000016ce88f00   x3: 0x000000016ce88f28
    x4: 0x000000016ce88d68   x5: 0x0000000000000011   x6: 0x0000000000000000   x7: 0x000000016ce87ed8
    x8: 0x0000000113f799f0   x9: 0x0000000106418530  x10: 0x0000000000179f41  x11: 0x0000000000219e00
   x12: 0x000000012de03fa8  x13: 0x0000000000000020  x14: 0x000000012de00000  x15: 0x0000000000000020
   x16: 0x0000000104c3bb34  x17: 0x000000012dea34d0  x18: 0x0000000000000000  x19: 0x000000016ce88bd8
   x20: 0x0000000000000000  x21: 0x000000016ce88f28  x22: 0x000000014de58530  x23: 0x000000014de58530
   x24: 0x0000000000000001  x25: 0x0000000000008001  x26: 0x0000000000008000  x27: 0x00000001e9523460
   x28: 0x0000000000000002   fp: 0x000000016ce88ba0   lr: 0x0000000104c3b880
    sp: 0x000000016ce88b40   pc: 0x0000000104c3b884 cpsr: 0x60001000
   far: 0x0000000000000018  esr: 0x92000006 (Data Abort) byte read Translation fault

Binary Images:
       0x102f70000 -        0x102f7ffff org.qcad (3.28) <50923e35-b0f4-33ad-87b5-c80b6e07fb18> /Applications/QCAD-Pro.app/Contents/MacOS/QCAD-Pro
       0x1035cc000 -        0x1039fffff libqcadcore.dylib (*) <68b6cf9d-e03f-30ac-a74f-0fae66240b13> /Applications/QCAD-Pro.app/Contents/Frameworks/libqcadcore.dylib
       0x103100000 -        0x1031a3fff libqcadentity.dylib (*) <185c94cd-8860-3723-9c74-185a1b18c0e0> /Applications/QCAD-Pro.app/Contents/Frameworks/libqcadentity.dylib
       0x10323c000 -        0x103293fff libqcadgui.dylib (*) <57e28a4d-f6fd-3b3d-9465-702d9b0dbb86> /Applications/QCAD-Pro.app/Contents/Frameworks/libqcadgui.dylib
       0x102ff4000 -        0x103003fff libqcadgrid.dylib (*) <2d7b7164-4c14-3ce7-bbe0-49ec38a68fa0> /Applications/QCAD-Pro.app/Contents/Frameworks/libqcadgrid.dylib
       0x103050000 -        0x10306ffff libqcadoperations.dylib (*) <c884af96-582c-3be3-a77e-100c27bfbb77> /Applications/QCAD-Pro.app/Contents/Frameworks/libqcadoperations.dylib
       0x10308c000 -        0x10309ffff libqcadsnap.dylib (*) <0630cbf2-cbeb-3a02-8fa7-e0c17fdb666c> /Applications/QCAD-Pro.app/Contents/Frameworks/libqcadsnap.dylib
       0x103014000 -        0x10301ffff libqcadspatialindex.dylib (*) <d834db84-bb6b-369c-b967-1148a481ed6f> /Applications/QCAD-Pro.app/Contents/Frameworks/libqcadspatialindex.dylib
       0x103370000 -        0x1033b7fff libspatialindexnavel.dylib (*) <05a48089-e554-3429-b0c3-eccd0fc9f1f3> /Applications/QCAD-Pro.app/Contents/Frameworks/libspatialindexnavel.dylib
       0x103514000 -        0x103573fff org.qt-project.QtOpenGL (6.4) <6fe5bbb7-45dc-316b-8c8f-4d455fee11ad> /Applications/QCAD-Pro.app/Contents/Frameworks/QtOpenGL.framework/Versions/A/QtOpenGL
       0x1030b4000 -        0x1030dffff org.qt-project.QtSql (6.4) <3974ce4c-632e-3d00-bbd1-088875642482> /Applications/QCAD-Pro.app/Contents/Frameworks/QtSql.framework/Versions/A/QtSql
       0x1032fc000 -        0x103333fff org.qt-project.QtSvg (6.4) <4c4477bd-616f-3de0-912d-934a2b143af2> /Applications/QCAD-Pro.app/Contents/Frameworks/QtSvg.framework/Versions/A/QtSvg
       0x103444000 -        0x10345bfff org.qt-project.QtXml (6.4) <e1e4e15c-d26c-3800-b8f1-c8a792ffec55> /Applications/QCAD-Pro.app/Contents/Frameworks/QtXml.framework/Versions/A/QtXml
       0x1044b8000 -        0x10482ffff org.qt-project.QtQml (6.4) <51bb2e01-4ec1-3719-a2f6-36cf30380e0e> /Applications/QCAD-Pro.app/Contents/Frameworks/QtQml.framework/Versions/A/QtQml
       0x103ea0000 -        0x103fa7fff org.qt-project.QtNetwork (6.4) <2d4bab25-001a-3333-b3db-b95d9aca025f> /Applications/QCAD-Pro.app/Contents/Frameworks/QtNetwork.framework/Versions/A/QtNetwork
       0x103474000 -        0x1034bbfff org.qt-project.QtPrintSupport (6.4) <2c160c73-f509-3e7b-b281-1e17179314d2> /Applications/QCAD-Pro.app/Contents/Frameworks/QtPrintSupport.framework/Versions/A/QtPrintSupport
       0x1054b4000 -        0x105903fff org.qt-project.QtWidgets (6.4) <d4530615-1625-3bd4-ad4f-c808d616fd39> /Applications/QCAD-Pro.app/Contents/Frameworks/QtWidgets.framework/Versions/A/QtWidgets
       0x1048f0000 -        0x104f03fff org.qt-project.QtGui (6.4) <755184d6-c551-391a-b2ed-6413cb06df19> /Applications/QCAD-Pro.app/Contents/Frameworks/QtGui.framework/Versions/A/QtGui
       0x106550000 -        0x1069bbfff org.qt-project.QtCore (6.4) <0039ed8f-97d9-3555-a1fb-c8281b2a9e1c> /Applications/QCAD-Pro.app/Contents/Frameworks/QtCore.framework/Versions/A/QtCore
       0x102fd4000 -        0x102fd7fff org.qt-project.QtConcurrent (6.4) <b2015105-c358-332c-8b3f-5debfd79c737> /Applications/QCAD-Pro.app/Contents/Frameworks/QtConcurrent.framework/Versions/A/QtConcurrent
       0x103d18000 -        0x103d93fff org.qt-project.QtDBus (6.4) <63c9ff9a-567f-3dac-8abc-3c30823ab0c2> /Applications/QCAD-Pro.app/Contents/Frameworks/QtDBus.framework/Versions/A/QtDBus
       0x103db8000 -        0x103e4ffff libqcocoa.dylib (*) <d3d12a1e-d996-3265-885a-a8e474f79f50> /Applications/QCAD-Pro.app/Contents/PlugIns/platforms/libqcocoa.dylib
       0x1063f4000 -        0x106417fff libqmacstyle.dylib (*) <52b5adc6-8fd3-3577-9c61-ed57cfe4032e> /Applications/QCAD-Pro.app/Contents/PlugIns/styles/libqmacstyle.dylib
       0x10dc48000 -        0x110467fff libqcaddwg.dylib (*) <97457f76-7e3d-3eaf-a495-534031592cb6> /Applications/QCAD-Pro.app/Contents/PlugIns/libqcaddwg.dylib
       0x106434000 -        0x1064e7fff org.qt-project.QtCore5Compat (6.4) <8437f179-2c2b-3e52-938f-3a0d3dda4d14> /Applications/QCAD-Pro.app/Contents/Frameworks/QtCore5Compat.framework/Versions/A/QtCore5Compat
       0x109c34000 -        0x109c87fff libqcaddxf.dylib (*) <6b64540e-e48a-3cdb-96f3-d596dcd2c3e6> /Applications/QCAD-Pro.app/Contents/PlugIns/libqcaddxf.dylib
       0x116200000 -        0x11919bfff libqcadjsapi.dylib (*) <3b3a8e88-1c63-3489-8045-f2ddaa719727> /Applications/QCAD-Pro.app/Contents/PlugIns/libqcadjsapi.dylib
       0x105464000 -        0x105477fff libqcadstemmer.dylib (*) <7a8fbfa6-eb3a-341b-a3ba-5703dbbdc01d> /Applications/QCAD-Pro.app/Contents/Frameworks/libqcadstemmer.dylib
       0x109d18000 -        0x109d4ffff libqcadpolygon.dylib (*) <9f63281b-3e5c-3eaa-97a5-206e21f5d899> /Applications/QCAD-Pro.app/Contents/Frameworks/libqcadpolygon.dylib
       0x109e7c000 -        0x109edffff org.qt-project.QtUiTools (6.4) <516ccc55-f406-3440-b0e8-9e02016a67db> /Applications/QCAD-Pro.app/Contents/Frameworks/QtUiTools.framework/Versions/A/QtUiTools
       0x106508000 -        0x10650ffff org.qt-project.QtOpenGLWidgets (6.4) <41848e91-ab63-32f6-b910-fd0bb41ad833> /Applications/QCAD-Pro.app/Contents/Frameworks/QtOpenGLWidgets.framework/Versions/A/QtOpenGLWidgets
       0x105440000 -        0x105447fff libconcavehull.dylib (*) <d837fe15-b71a-3baa-8e53-a5368e9a6340> /Applications/QCAD-Pro.app/Contents/Frameworks/libconcavehull.dylib
       0x10a43c000 -        0x10a887fff libqcadpdf.dylib (*) <093902bd-646d-3997-a16d-f2f07180189c> /Applications/QCAD-Pro.app/Contents/PlugIns/libqcadpdf.dylib
       0x10b0a4000 -        0x10b7a7fff libqcadproscripts.dylib (*) <d8cdf77e-e618-3ae8-bb92-42999537eb7e> /Applications/QCAD-Pro.app/Contents/PlugIns/libqcadproscripts.dylib
       0x10c3ac000 -        0x10cf67fff libqcadscripts.dylib (*) <8018c668-8fb9-3b03-8a2e-ebae0dbc23c8> /Applications/QCAD-Pro.app/Contents/PlugIns/libqcadscripts.dylib
       0x109cc0000 -        0x109cd3fff libqcadshp.dylib (*) <ab708ab4-c3a9-3758-84fc-4f0ff08ff60d> /Applications/QCAD-Pro.app/Contents/PlugIns/libqcadshp.dylib
       0x106524000 -        0x10652bfff libqgif.dylib (*) <fabce6ac-714a-3884-bd73-6faf33bbd4d2> /Applications/QCAD-Pro.app/Contents/PlugIns/imageformats/libqgif.dylib
       0x109d70000 -        0x109d77fff libqwbmp.dylib (*) <dc542b64-fd8e-30ba-864f-099d1e5a788b> /Applications/QCAD-Pro.app/Contents/PlugIns/imageformats/libqwbmp.dylib
       0x109d88000 -        0x109df3fff libqwebp.dylib (*) <275f6c12-b594-3ec1-8002-afae818a8deb> /Applications/QCAD-Pro.app/Contents/PlugIns/imageformats/libqwebp.dylib
       0x109e08000 -        0x109e0ffff libqico.dylib (*) <c39c4792-e821-3d0e-a51e-4c91092b2cbf> /Applications/QCAD-Pro.app/Contents/PlugIns/imageformats/libqico.dylib
       0x109e20000 -        0x109e27fff libqmacheif.dylib (*) <28e973af-8681-333a-8e06-ca0ef139c6f1> /Applications/QCAD-Pro.app/Contents/PlugIns/imageformats/libqmacheif.dylib
       0x10af88000 -        0x10afc7fff libqjpeg.dylib (*) <4a19d30b-c91f-3c5e-93e6-313b73aded30> /Applications/QCAD-Pro.app/Contents/PlugIns/imageformats/libqjpeg.dylib
       0x10afdc000 -        0x10b03bfff libqtiff.dylib (*) <ebd99856-9f3e-374d-adec-78591b8e5ecb> /Applications/QCAD-Pro.app/Contents/PlugIns/imageformats/libqtiff.dylib
       0x109e38000 -        0x109e3ffff libqsvg.dylib (*) <55448c8b-cdbb-3509-8e76-498a4e6909c1> /Applications/QCAD-Pro.app/Contents/PlugIns/imageformats/libqsvg.dylib
       0x109e50000 -        0x109e57fff libqicns.dylib (*) <fb8078bc-26e3-3404-9712-2820f6dccc99> /Applications/QCAD-Pro.app/Contents/PlugIns/imageformats/libqicns.dylib
       0x10a348000 -        0x10a34ffff libqtga.dylib (*) <ae8c892d-3d68-32e2-823e-02d20a1273ae> /Applications/QCAD-Pro.app/Contents/PlugIns/imageformats/libqtga.dylib
       0x10a360000 -        0x10a367fff libqmacjp2.dylib (*) <3a65cf03-f572-371d-813a-469eedc9151f> /Applications/QCAD-Pro.app/Contents/PlugIns/imageformats/libqmacjp2.dylib
       0x1054a0000 -        0x1054abfff libobjc-trampolines.dylib (*) <80f14f3d-d099-3693-a8e0-eb9a526b1790> /usr/lib/libobjc-trampolines.dylib
       0x10dc14000 -        0x10dc1ffff libqsvgicon.dylib (*) <59fc1d66-aaf2-3b22-8dd8-2eca5e04bf88> /Applications/QCAD-Pro.app/Contents/PlugIns/iconengines/libqsvgicon.dylib
       0x113748000 -        0x113757fff libqcadcustomwidgets.dylib (*) <8f944d85-4001-384d-befb-d6c2c9fe74c2> /Applications/QCAD-Pro.app/Contents/PlugIns/designer/libqcadcustomwidgets.dylib
       0x18e11f000 -        0x18e5f8fff com.apple.CoreFoundation (6.9) <b4fdaece-9727-3969-b014-27f7f24c8e01> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
       0x18f0b8000 -        0x18fa7dfff com.apple.Foundation (6.9) <b7d67e5a-dce2-3f6b-b2b8-895a3669e3ec> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
       0x191383000 -        0x192291fff com.apple.AppKit (6.9) <cc3e5215-4cd7-364c-8750-6eb7002720ce> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
       0x192d9f000 -        0x1931c7fff com.apple.SkyLight (1.600.0) <e3d1dd9e-fa1b-332e-86ba-cc2915276118> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
       0x18df0c000 -        0x18df53fff libdispatch.dylib (*) <8e87dc0e-a570-3933-b37d-5e05ad516206> /usr/lib/system/libdispatch.dylib
       0x1979a1000 -        0x197cd4fff com.apple.HIToolbox (2.1.1) <5f34bbf5-653a-31a5-b4b3-0a02c91ab488> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
       0x18dd62000 -        0x18ddf053b dyld (*) <ac277a36-1808-327a-8761-cca585421212> /usr/lib/dyld
       0x18e07f000 -        0x18e0b8fe7 libsystem_kernel.dylib (*) <7acbd9bc-d056-310e-858d-81b116cf6d28> /usr/lib/system/libsystem_kernel.dylib
       0x18e0b9000 -        0x18e0c5fff libsystem_pthread.dylib (*) <b401cfb3-8dfe-32db-92b3-ba8af0f8ca6e> /usr/lib/system/libsystem_pthread.dylib
               0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=1.4G resident=0K(0%) swapped_out_or_unallocated=1.4G(100%)
Writable regions: Total=5.5G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=5.5G(100%)

                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               256K        2 
Activity Tracing                   256K        1 
CG backing stores                 7680K        8 
CG image                           496K       22 
ColorSync                          624K       28 
CoreAnimation                      240K       15 
CoreGraphics                        48K        3 
CoreUI image data                 3584K       26 
Foundation                          48K        2 
JS VM Gigacage                    76.0M       19 
JS VM Isolated Heap               23.2M       22 
JS VM Isolated Heap (reserved)    2048K        1         reserved VM address space (unallocated)
Kernel Alloc Once                   32K        1 
MALLOC                             3.1G      160 
MALLOC guard page                  192K        9 
MALLOC_MEDIUM (reserved)           2.0G       17         reserved VM address space (unallocated)
MALLOC_NANO (reserved)           256.0M        1         reserved VM address space (unallocated)
STACK GUARD                       56.3M       17 
Stack                             16.5M       17 
VM_ALLOCATE                        624K       28 
__AUTH                            1366K      290 
__AUTH_CONST                      21.2M      487 
__CTF                               824        1 
__DATA                            6428K      527 
__DATA_CONST                      30.6M      539 
__DATA_DIRTY                      1488K      168 
__FONT_DATA                        2352        1 
__INFO_FILTER                         8        1 
__LINKEDIT                       850.3M       51 
__OBJC_RO                         66.2M        1 
__OBJC_RW                         2011K        1 
__TEXT                           568.2M      554 
dyld private memory                320K        4 
mapped file                      480.4M       47 
shared memory                      960K       19 
===========                     =======  ======= 
TOTAL                              7.5G     3090 
TOTAL, minus reserved VM space     5.3G     3090 
 2466 WebsiteBug ReportLow Website QCAD documentation/features Closed
100%
Task Description

“Default template to use for new drawings” is a Pro feature. Website state it is also a CC feature.

https://www.qcad.org/en/documentation/features

 2465 QCAD (main)Bug ReportLow Modify > Chamfer / Bevel: fails with circle entity Closed
100%
Task Description

Chamfer with circle raises exception in ShapeAlgorithms.circleToArc (missing start angle).

 2464 QCAD (main)Bug ReportLow File > Bitmap Export: broken / exception Closed
100%
Task Description

File > Bitmap Export raises an exception before the dialog is shown when compiled against Qt 5.

 2463 QCAD (Qt 6)Bug ReportLow Tool matrix empty (Qt6) Closed
100%
Task Description

See:
https://www.qcad.org/rsforum/viewtopic.php?f=89&t=9940

2462QCAD (main)Bug ReportLowDWG import issue: m^2 gets weird "\A1"Assigned
0%
Task Description

I’ve opened an existing, old dwg file in the Professional Trial edition, file(1) says it’s “DWG AutoDesk AutoCAD 2004/2005/2006”.
It contains (among other stuff) a floor plan with areas in m^2. A PDF export (from the original software used at the time, probably autocad) shows that this was displayed correctly.
However, in QCAD, I get a “\A1” and a very small number 2 instead. I’ll attach screenshots.

2461dxflibBug ReportVery LowASCII Control characters not handled correctly in Commu...Assigned
0%
Task Description

I see the following problem:
When I open a particular DXF file in the Professional Trial version 3.27.9.0 on macOS, “^I” in text fields is expanded to whitespace.
When I open the same DXF file in the Community Edition 3.27.9.0 on NetBSD/x86_64 (installed from pkgsrc), “^I” in text fields is visible as “^I”.

 2460 QCAD/CAMBug ReportLow Tab Lengths incorrect Closed
100%
Task Description

Tab value specification in Option bar: Lengths 2, Thickness 1
G-code Lengths = 8.35 (in my example), Thickness 1

 2459 QCAD (main)Bug ReportLow Linetype scale of blocks in viewports not scaled accord ...Closed
100%
1 Task Description

Reported in forum 2 times:
https://www.qcad.org/rsforum/viewtopic.php?f=95&t=9887&p=40202&hilit=bugtracker#p40202 https://www.qcad.org/rsforum/viewtopic.php?f=33&t=9916&p=40298#p40298

Most likely the issue exist since QCAD Vers. < 3.25.2.0 (3.25.2)

 2458 QCAD (main)Bug ReportLow mygcode [PF] returns the valie of the feed rate from th ...Closed
100%
Task Description

There are not a lot of waterjet resources so I went ahead an tried to modify mygcode.js.

The issue is that plunge rate is entered in the tool and that shows up in the toolpath. The water jet wants to see that number to determine how long it holds in place to pierce the work. It needs it to be displayed as a prefix “S” followed by time in seconds and finally a period. I had been just hard coding a 2 second default time as I only cut glass but recently found some circumstance where I need different vaules. It is also more user friendly to get it to work correctly.

 	[// variables: Change Plunge Rate prefix from F to S
   	 //                   			 name,                  ID,                     always, prefix, decimals, options
		this.registerVariable("plungeRate",          "FP",                   true, "S", 0);

It needs to show up in the header as M1407 = [FP] which the water jet uses as a default pierce time after forced stop. In this instance it looks like M1407 = S2. This is working in the code currently.

For each remaining toolpath the Waterjet needs a pierce time.

M3
M8
G [FP].

And this is were it falls apart. I have red lined the gcode in a word document highlighting the first few problem instances. The first instance displays the value for Feed Rate and not Plunge Rate.

<CODE>: SELECT ALL

M3
M8
G4 S240.  Wrong value, should be as above "S2." but instead it grabbed the feed rate value from toolpath 1 "240"

</code>

Thanks.
Version:
3.27.8.0 (3.27.8)
Internet:
QCAD.org
Build Date:
Oct 6 2022
Revision:
dea3962
Qt Version:
5.13.2
Architecture:
x86_64
Compiler:
MSVC++ 14.0 (2015)

2457QCAD (main)Bug ReportLowPolyline start / end widths not saved for first segmentAssigned
0%
Task Description
  1. Draw a polyline with a single segment
  2. Set the start and end width of the first vertice / segment (index 0)
  3. Save
  4. Reload
2456QCAD (main)Feature RequestLowTangent arcAssigned
0%
3 Task Description

It would be great if QCAD could create an arc tangent to another entity without necessity to type a radius.
Just two simple steps:
1. Click the endpoint of another entity to start the arc. The arc is tangent to the starting entity.
2. Click the second point to place the arc.

 2455 QCAD (main)Bug ReportLow Overlay labels in the bottom panel of the qcad window Closed
100%
1 Task Description

Version: qcad-3.27.9.3-alt1
Qt version: 5.15.8
Architecture: x86-64
Graphics platform: X11
Kernel version: 5.15.94-un-def-alt1

Steps:

1. Run from console: $ qcad
2. Reduce the size of the program window.

OBSERVED RESULT: Label overlay.

EXPECTED RESULT: Correct display of inscriptions (text in the bottom panel).

Same behavior: on first run.

 2454 QCAD (main)Bug ReportMedium inserted jpegs will not 'go to back' properly Closed
100%
Task Description

Hi

Long time no see - so long that I’ve had to reregister. I must be getting a bit better (though I only do pretty basic stuff).

I often have to trace an actual paper drawing, so I scan it in as a jpeg and insert in the usual way. For a while now, this has become difficult to do because however often I send the image to back or bring the polyline to the front, just moving my mouse over the photo (not selecting it) makes the line disappear and I’ve got a bit fed up with trying to work around this (I don’t think it was always like this?)

I’ve attached my current example (there’s only a single image in it at the moment), and thank you in advance for your patience and help.

Jackie

2453QCAD (main)Bug ReportLowControl point Splines - Issue with Closed & Minimal poi...Assigned
0%
1 Task Description

Andrew,
For more detailed description please refer to:
https://www.qcad.org/rsforum/viewtopic.php?f=33&p=40081#p40081

In the included screen grab below, left is when drawn cubic, closed periodic, from 4 points.
Right is when the file is re-loaded.

It is hard to select the incorrect shape when pointing near it ... Probably it is referring to the correct internal shape.
After drawing it explodes to a Null length polyline with 2 identical vertices.

I can’t include the error in a file as it reverts on re-load.

The same issue exist for quadratic, closed periodic, from 3 points.

Regards,
CVH

2452QCAD (main)Feature RequestVery LowKeyboard Shortcut for Undo Last Point While Drawing Spl...Assigned
0%
1 Task Description

Instead of having to click on the toolbar, it would be useful to have a keyboard shortcut for undoing the last fit point (or control point) while drawing splines. Preferably it would also be nice to allow the user the ability to set what the keyboard shortcut is for this function.

 2451 QCAD (main)Bug ReportLow Explode (XP) > Explodes hatches in non-uniform scaled b ...Closed
100%
1 Task Description

Andrew,

Hatches in uniform scaled blocks explode perfect among other entities, even a hatch pattern is scaled.
Hatches in non-uniform scaled blocks are exploded as not scaled.

One could scale the hatch boundaries non-uniform.
For solid hatches the pattern scale doesn’t matter.
For patterned hatches the pattern scale and angle is more problematic.
But why not explode it as is, the pattern is transformed as expected for the non-uniform scaled block reference.

Or one doesn’t transform the pattern at all but then the the non-uniform scaled block reference isn’t displayed correctly.

Regards,
CVH

2450QCAD (main)Bug ReportLowFlip Block with Attributes horizontaly failsAssigned
0%
Task Description

A block with Attributes can’t be flipped (Option bar) horizontally. The Attributes will be rotated 180° instead of been mirrored. Other entities in the block flip correctly.
Same block flipped vertically works as expected (Mirrored Attributes).
Same block flipped with FH or MI works as expected. (Mirrored Attributes).

Showing tasks 51 - 100 of 2549 Page 2 of 51 - 1 - 2 - 3 - 4 - 5 - Last >>

Available keyboard shortcuts

Tasklist

Task Details

Task Editing