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)

IDCategoryTask TypeSeveritySummaryStatusProgress  desc
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

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

Please view the attachment.

Regards

Graeme

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

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

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.

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’)

2533QCAD (main)Bug ReportLowSurveyor's units never seem to display when selected as...Assigned
0%
Task Description

I've tried several times to try to see what the "surveyor's units" option of the Angular Dimensions format in the UI preferences will display as, but all it ever seems to do is cause the angle measurement to become blank. No angles are displayed whenever this mode is selected.

Indeed, I cannot figure out what the setting actually does besides causing angles to never be displayed.

Is there a way to make this setting do something meaningful or is it just broken?

I found an old forum thread from 2016 about this same issue and it sounds like the same things is still happening since then.

I'm not a surveyor so I have no actual practical use for these units that I can yet see, but I just figured I'd add an report to the bug tracker here in case any developers aren't aware that the bug still seems to exist.

Does the setting do anything besides changing the displayed units in the status bar?

2538QCAD (main)Bug ReportVery LowWeight 2.11 French translation typoAssigned
0%
1 Task Description

Andrew,

When switched to French I detected a typo in the drop down box for Lineweight.

Weight 2.11mm is listed as 1.58mm {2.11m?}
https://github.com/qcad/qcad/blob/master/ts/qcadcore_fr.ts#L1228-L1229
Also see attached image file.


May I ask why only ISO types have a comma instead of a point in French.
The use of a comma is uncommon in the Property Editor even when that is the native decimal separator.
I also detect an extra space between the value and ‘mm’ and that only for the ISO types.

This only occurs in:
https://github.com/qcad/qcad/blob/master/ts/qcadcore_fr.ts https://github.com/qcad/qcad/blob/master/ts/qcadcore_pl.ts https://github.com/qcad/qcad/blob/master/ts/qcadcore_pt.ts


Probably not OS or QCAD version related.

Regards,
CVH

2539QCAD (main)Bug ReportVery Low(Relative) Polar feet + surveyor notation fails.Assigned
0%
1 Task Description

Andrew,

A user essentially pointed out to an ACAD textbook example.
https://qcad.org/bugtracker/index.php?do=details&task_id=2533
Step 3 of: https://autodesk.blogs.com/between_the_lines/2012/07/drawing-with-surveyors-units-in-autocad.html

Please refer to this topic:
https://www.qcad.org/rsforum/viewtopic.php?f=33&t=10652

Regards,
CVH

2543QCAD (main)Bug ReportLowPolygonal Area Tool (IR) creates shapes persistently, c...Assigned
0%
1 Task Description

Upon activating the Polygonal Area Tool either by clicking on the toolbar or by the IR keyboard shortcut the tool will persistently draw a polygon without clicking anything. This happens with the mouse and the trackpad on the MacBook Pro. This was happening in 3.29.3, and then after I upgraded to 3.29.4. The MacOS version is 14.1 Sonoma.

2547QCAD (main)Bug ReportVery LowBlock > Purge Unused Blocks > Removes _DatumFilled bloc...Assigned
0%
1 Task Description

Andrew,

The _DatumFilled Block used by Datum entities (DT) is considered as not used and is purged by Purge Unused Blocks (BP).
There is no block association for these special types of arrowheads in QCAD.

After purging the Datums are not immediately updated but the special arrowheads will eventually disappear. Adding new Datums will not fix that.

Not problematic because the _DatumFilled Block is re-created on save/reload when Datum entities exists. Datums are updated.

Probably not OS or version related.
Related forum topic: https://www.qcad.org/rsforum/viewtopic.php?f=89&t=10694

Best solution would be to support different types of arrowheads and all related:
https://qcad.org/bugtracker/index.php?do=details&task_id=695 https://qcad.org/bugtracker/index.php?do=details&task_id=757 https://qcad.org/bugtracker/index.php?do=details&task_id=1157

Regards,
CVH

2550QCAD (main)Bug ReportLowOnly a partial hatch appears in a closed shapeAssigned
0%
Task Description

I’m seeing only a partial hatch in the shape. See here for details.

2551QCAD (main)Bug ReportLowCursor and visualization problemsAssigned
0%
Task Description

The last version (3.29.4) present a very important issue.
When we work with a “complicated” file (about >1MB or up see attachment test.dwg) the cursor and selected object not work fine after move some layout windows in Paper_Space: disappear coordinates informations and snap nodes. (see attachment before.png an after.png)
This issue is present in all Qcad version (Linux, Mac-intel, Mac-silicon, Windows).
The last working-fine version is 3.28.2
I’m a enthusiastic Qcad user and I hop that this issue will be fixed early!
Regards
Arch. Riccardo Beduschi

2552QCAD (main)Bug ReportLowWindows shortcut Alt + Underlined Key fails partly in m...Assigned
0%
Task Description

Reason: Same underlined keys are used for different menus

Select and Snap = S,
Dimension and Info = I,
Modify and Misc = M,

173QCAD (main)Feature RequestLowexplode text to lettersAssigned
0%
1 Task Description

implement

208QCAD (main)Feature RequestLowSVG export: support custom line weightsAssigned
0%
Task Description

Find way to support custom line weights for SVG export. See also forum thread: http://www.ribbonsoft.com/rsforum/viewtopic.php?t=1594

228QCAD (main)Feature RequestLowInsert current date (and other fields)Assigned
0%
9 Task Description

Insert field into drawing that displays current date, file name, ...

275QCAD (main)Feature RequestLowRounding all corners of a polylineAssigned
0%
3 Task Description

Modify - Round - Click polyline - round all corners

277QCAD (main)Feature RequestLowcommand line arguments: allow class name after -execAssigned
0%
Task Description

command line arguments: allow class name after -exec

293QCAD (main)Feature RequestLowmulti-select for blocksAssigned
0%
Task Description

It would be nice if one could select multiple blocks in the block list at once (holding ctrl or ctrl+shift). Main purpose would be to delete them if they are not needed anymore. If possible, the same applies to layers.

316QCAD (main)Feature RequestLowBlocks list and selected blockAssigned
0%
Task Description

Wouldn’t it be nice, if selecting a block in model view would somehow highlight (just like clicking a block in the list does) the selected block in the “Block List” window?

(Feature request sounds a little harsh, enhancement proposal would seem more apt.)

355QCAD (main)Feature RequestLowRemember function for dimension OptionAssigned
0%
Task Description

I think it would be nice to have more flexibility for Prefix etc. option (not only the drop down with a given choice) and a remember function for all those fields like postfix and tolerance.

Why Remember Function:
If I use a postfix like <>” in the postfix field I’m only able to use it for this particular dimension type at this time. If I change the type (from Horizontal to vertical or what ever) I have always to repeat my postfix. The same with tolerances.

396QCAD (main)Feature RequestLowBlocks: moving blocks: show bounding boxAssigned
0%
Task Description

Blocks: moving complex blocks with drag and drop should show bounding box as preview

455QCAD (main)Feature RequestLowlogical operations for polylinesAssigned
0%
2 Task Description

A missing feature in my work are logical operations (combine, intersect, ..) for polylines

Example:
Draw some elements, select them, say combine. The result will be the outline of all elements.

467QCAD (main)Feature RequestLowFeature request for new Arc tool option to add to Arc s...Assigned
0%
2 Task Description

For and behalf of mandrena

To add another Arc tool option in Arc tools set:

1.Specify Start point for Arc.
2.Specify End point for Arc.
3.Specify “Tangent” direction (without being restricted in input field) so you can visually select a point on your desired Tangent line!

500QCAD (main)Feature RequestLowAutohide Side PanelAssigned
0%
1 Task Description

it would be ideal to be able to have the option to autohide the side panel to increase the visible drawing space when working on a small screen.

502QCAD (main)Feature RequestLowPoints on line: enter distance instead of number of poi...Assigned
0%
2 Task Description

Points on line: enter distance instead of number of points as a variant of the tool or as a new tool.

503QCAD (main)Feature RequestLowConvert entities to points with a fixed distanceAssigned
0%
Task Description

Select lines, arcs, ... and convert them to points along the lines, arcs, ... with a fixed distance.

See also forum at:
http://www.ribbonsoft.com/rsforum/viewtopic.php?t=1834

512QCAD (main)Feature RequestLowModify stretch and Restrict orthoAssigned
0%
1 Task Description

The modify stretch tool wants first and second corner, start and end point, then starts afresh. When I turn on restrict horizontally eg to align two points between start and end, the restriction sticks and I have to call restrict none, to be able to perform the next iteration, set the first corner then.

So, in the quest for a comfortable user interface, it was nice, if the modify stretch first/second corners parameter setting was not affected by current restrict/ortho etc. settings. Actually, that does not make any sense at all anyways, does it, a rectangle is defined by two degrees of freedom, isnt it?

514QCAD (main)Feature RequestLowPunktpestimmung Intersection manual muss immer wieder n...Assigned
0%
Task Description

Beispiel:
Zeichnen einer Linie (Line two points) mit Punktbestimmung.
Wähle ich für die Punktbestimmung z.B. “End” bleibe ich in diesem Modus bis ich etwas anderes wähle. Gut ;-)

Wähle ich für die Punktbestimmung “Intersection manual” muss ich dies für jeden Punkt immer wieder neu anwählen. Schlecht :-(

516QCAD (main)Feature RequestLowTo add option to 'print only' selected area.Assigned
0%
2 Task Description

To add the option to ‘print only’ selected area in a drawing.

519QCAD (main)Feature RequestLowPress tab to access first control in options tool barAssigned
0%
1 Task Description

See:
http://www.ribbonsoft.com/rsforum/viewtopic.php?t=1867

Apparently this was possible in QCAD 2 due to the default behavior of Qt.

525QCAD (main)Feature RequestLowchange the printed symbol of pointsAssigned
0%
1 Task Description

Hi,

in QCAD3 RC2 points were printed as crosses, in QCAD3 RC4 they are printed as (very little) points. I think this isn’t a bug but a feature. ;-)

It would be nice if one could change this behaviour / select the symbol of points.

Best regards - Stefan

This is a double post of http://www.ribbonsoft.com/rsforum/viewtopic.php?p=5870#5870 as suggested there.

554QCAD (main)Feature RequestLowAuswahlbox sollte auch mit der Shift Taste Bereiche dem...Assigned
0%
Task Description

Ziehe ich mit der Maus eine normale Auswahlbox kann ich Elemente markieren.
Möchte ich einzelne Bereiche wieder herausnehmen muss ich alle Elemente einzeln anklicken (mit gedrückter Shift Taste).
Ich kann zwar dies komfortabler gestalten mit der Select → (De -) Select Contour Funktion welche aber erst über das Menue aufgerufen werden muss.

So wie ich einzelne Elemente mit der Maus auswählen und mit der Shift-Maus Funktion deselektieren kann wäre es schön wenn die Shift Taste auch bei Auswahlbereichen direkt zum deselektieren eingesetzt werden könnte.

564QCAD (main)Feature RequestLowSettings organisation in levelAssigned
0%
Task Description

As an old professional “documentation writer and user inteface designer” but IMHO, I’m not convinced that the “Application preferences” are correctly organised for ease of understanding and using them.
These settings are organised in 2 levels. Some of the first levels have their own settings (e.g. “Graphics view”) while most others don’t (e.g. “Load/save”). May I humbly ;-) suggest some consistency rules :
- no sub-level if there is only one subject
- no items on main level if there are already 1 or more sub-level(s).
For instance :
- sub-level “Default Dimension settings” under “Dimension” is the only sub-level : then move these items under main level “Dimension” and suppress the sub-level ;
- the items under “Graphics view” main level (with several sub-levels)could be in a sub-level named “General” ;
Actually, “Graphics view” main level is the only one which has both its own items and sub-levels ;-))) ?

566QCAD (main)Feature RequestLowShortkey for rectangle text rotationAssigned
0%
1 Task Description

I would like to get a shortkey like ‘+’ to rotate text at 90° clockwise.

579QCAD (main)Feature RequestLowCopy layers / blocksAssigned
0%
2 Task Description

Duplicate (copy, clone) a layer with or without entities on it. New name can be specified by user.

586QCAD (main)Feature RequestLowFile open dialog with previewAssigned
0%
1 Task Description

Since this is not supported by Qt anymore, this would likely have to be implemented from scratch.

588QCAD (main)Feature RequestLowBemaßung Prefix Dropdown mit eigenen Vorgaben erweitern...Assigned
0%
Task Description

Es wäre Arbeitserleichternd wenn ich bei den Optionen für Bemaßungen (Prefix/Postfix) eigene Präferenzen speichern könnte so das diese in allen Zeichnungen von mir verfügbar wären.
Zudem wäre es wünschenswert dieses nicht nur bei den Prefix sondern auch bei den Postfix Angaben nutzen zu können was dann alle(?) Manipulationen erschlagen würde.

Siehe auch:
http://www.ribbonsoft.com/rsforum/viewtopic.php?f=11&t=1966

596QCAD (main)Feature RequestLowTool "Lengthen" mit "Total" erweitern oder ....Assigned
0%
1 Task Description

Eine oft Hilfreiche Zeit/Klick sparende Erweiterung wäre eine “Total” Option bei dem “Lengthen” Tool.

Aktuell ist es mit dieser Funktion möglich ein Element zu verlängern oder zu verkürzen um den Amount X. Der Referenzpunkt (von welchem Ende) kann bestimmt werden.

Die Erweiterung die ich mir wünschen würde wäre auch ein “Total” um ein Element auf eine bestimmte Länge zu bringen ohne einen Taschenrechner benutzen zu müssen. Referenz (welches Ende oder Mitte) sollte (muss) dafür wählbar sein.

Die Funktion “Property editor” stellt bereits über die Geometry Eigenschaften die Möglichkeit zur Verfügung einen “Total” Wert zu manipulieren. Leider bin ich aber hierbei nicht in der Lage zu bestimmen welcher Element Referenzpunkt dafür benutzt werden soll. Könnte ich die Referenz wählen (welches Ende oder Mitte) wäre auch dies dann durchaus akzeptabel ;-)

598QCAD (main)Feature RequestLowSupport tangents between ellipsesAssigned
0%
2 Task Description

To add support for drawing tangents between ellipses.

See topic:
http://www.ribbonsoft.com/rsforum/viewtopic.php?f=31&t=2003

601QCAD (main)Feature RequestLowFür Berechnungen neu zu erstellende Elemente Werte von ...Assigned
0%
Task Description

Es wäre schön wenn ich Werte wie zum Beispiel Längen von Linien direkt abgreifen könnte um diese weiter in Berechnungen verwenden zu können.

Beispiel:
Ich habe eine Linie konstruiert wobei sich eine Länge y ergeben hat.

Nun möchte ich eine Linie zeichnen die 5 mal y sein soll.

Linientool → Wert 5* eingeben und y durch Auswahl mit der Maus von dem vorhandenen Elements übernehmen.

Natürlich könnte ich die Geometrie Info benutzen um den Wert abzulesen oder auch über die Zwischenablage zu benutzen. Ein abgreifen mit der Maus wäre aber schneller, direkter und wahrscheinlich auch mit weniger Fehlern (Human error) verbunden. Wahrscheinlich auch genauer da QCad, denke ich, mit mehr Nachkommastellen rechnet, oder?

604QCAD (main)Feature RequestLowMeasure and record X,Y coordinates tool - add to info ...Assigned
0%
Task Description

Feature request
See topic - http://www.ribbonsoft.com/rsforum/viewtopic.php?f=31&t=2015

Just a thought, but one that could be useful for machinists in particular - a measurement tool that can snap to a point as per usual, but then just displays the drawing coordinates in X and Y. This could be expanded to the dimensions tool set, so that you can click on a point and print the coordinates next to it.

609QCAD (main)Feature RequestLowClean up toolAssigned
0%
1 Task Description

To have a ‘clean up ' tool to:

- eradicate duplicate lines
- eradicate stray points
- remove empty layers
- remove unused blocks

Perhaps with an initial dialog which allows the user to choose what they want to clean up.

612QCAD (main)Feature RequestLowPlot math functionsAssigned
0%
1 Task Description

Input:

  1. X axis min/max or choose line (?) or center (for polar functions)
  2. function: y = f(x) / polar function: r = f(a)

Output:

  1. function plot
614QCAD (main)Feature RequestLowBlocks - overwrite current layer yes/no ...Assigned
0%
Task Description

I would appreciate an option for the library Browser that gives me the possibility to decide by my self to use the current (same name) layer in my drawing or overwrite it with the existing layers in the library item.

Imagine the possibility’s of this feature .... ;-)

617QCAD (main)Feature RequestLowDifferent dimensions font sizes in the same drawing.Assigned
0%
Task Description

Different dimensions font sizes in the same drawing.

618QCAD (main)Feature RequestLowuser defined lineweightAssigned
0%
2 Task Description

To have the option to set your own ‘user defined’ line weight.

620QCAD (main)Feature RequestLowoption to have horizontal dimension info using vertical...Assigned
0%
2 Task Description

Some times I need to have the dimension info using the Vertical Dimension tool displayed horizontally.
See attached image:
Possibly this option could be added to the Label drop down menu.

622QCAD (main)Feature RequestLowDisproportianal scaling of arcs, ellipsesAssigned
0%
Task Description

Support disproportional scaling also for arcs, ellipses, other entities, not only lines and polylines with only line segments.

Showing tasks 101 - 150 of 519 Page 3 of 11 - 1 - 2 - 3 - 4 - 5 - Last >>

Available keyboard shortcuts

Tasklist

Task Details

Task Editing