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
 1014 QCAD (main)Bug ReportLow Spline shape changes in DXF/DWG file when saved after m ...Closed
100%
Task Description
  1. Draw Spline from fit points
  2. Mirror spline
  3. Save as DXF/DWG
  4. Load into 3rd party application
  5. spline shape changed

Reconstructing the mirrored spline from scratch maybe used as a workaround.

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

 2504 QCAD (main)Bug ReportLow Spline no add Point or Remove Closed
100%
Task Description

I can not add or remove Points to existing Spline

 1289 QCAD (main)Bug ReportLow Spline from fit points: load error for non-periodic but ...Closed
100%
Task Description

After saving an open designed Spline QCad will open it the next time as a closed spline.
Trying to fix this in the Property Manager using “Closed Periodic yes/no” leads to an open but broken spline.

Pic 1 = designed
Pic 2 = saved/opened from HD
Pic 3 = Try to fix this with the Property Manager

 777 QCAD (main)Bug ReportLow Spline display error Closed
100%
Task Description

Splines produced by Illustrator are not correctly imported or displayed.

See:
http://www.qcad.org/rsforum/viewtopic.php?f=11&t=2344

 2429 QCAD (main)Bug ReportLow Spline Crash Closed
100%
Task Description

While editing a spline with fit points, I accidentally moved a fit point on top of another fit point, which locked up the software (grayed out, not responding). I had to ctl / alt / del and end task to resolve.

 1086 DocumentationBug ReportLow Spline corner control responding to multiple mouse clic ...Closed
100%
Task Description

I can’t find any documentation (Reference Manual / Book) about the possibility to change the “corner” transition shape for Spline’s (Control Points) with multiple mouse clicks.
1, 2 or 3 clicks = smooth to sharp corner.

 874 QCAD (main)Bug ReportLow Spelling error in 3.2 for 3 Tangents (CT3) Closed
100%
Task Description

In the feedback info for 3 Tangents (CT3) there is a spelling error!

‘tree’ instead of Three is used.

 2360 QCAD (main)Bug ReportLow Special characters and italic letter issues Closed
100%
Task Description

Many thanks Andrew for your input on task  FS#2359 .
However there were two other issues mentioned in the first task that seem to have been overlooked.
Italic text appears and disappears as I zoom in and out and if I try to insert italic text it will not show as italic on screen. Also when I try to insert an ‘ohm’ special character I only get a ‘?’ question mark.
Apologies if I’m doing something silly !!
Regards
Richard

 2184 QCAD (main)Bug ReportLow Spam Closed
100%
Task Description

spam

 2185 QCAD (main)Bug ReportLow spam Closed
100%
Task Description

spam

 2327 QCAD (main)Bug ReportLow Spam Closed
100%
Task Description

Spam

 215 QCAD (main)Bug ReportLow Space to revert to keyboard entry Closed
100%
Task Description

Space bar does not change to keyboard input for coordinates, etc.

 1451 QCAD (main)Bug ReportLow Space doesn't move focus to undocked command line (Linu ...Closed
100%
Task Description

Please see topic:
http://www.qcad.org/rsforum/viewtopic.php?f=33&t=4331

 659 QCAD (main)Bug ReportVery Low Some true type fonts may not be supported Closed
100%
Task Description

Customer reports that TTF called “Magneto” is not shown properly.

 1500 QCAD (main)Bug ReportVery Low Some plugins not built right in debug mode Closed
100%
Task Description

Building current HEAD (5468b69) with:

/usr/local/lib/qt5/bin/qmake \
        QMAKE_CXXFLAGS="-g -ggdb3 -I/usr/local/include" \
        QMAKE_LIBS="-lcxxrt -L/usr/local/lib" \
        -r
make debug
tinky:~/w/qcad/qcad$ ../qcad.sh
Launching QCAD debug
QCAD version  3.15.5.7
RPluginLoader.cpp:67, static QStringList RPluginLoader::getPluginFiles():
11:25:06: Debug:    Ignoring release plugin built in debug mode:  "libqcadexample.so"
RPluginLoader.cpp:67, static QStringList RPluginLoader::getPluginFiles():
11:25:06: Debug:    Ignoring release plugin built in debug mode:  "libtransactionlistener.so"
RDxfPlugin.cpp:9, virtual bool RDxfPlugin::init():
11:25:06: Debug:    RDxfPlugin::init
RDebug.cpp:81, static int RDebug::stopTimer(int, const QString &, int):
11:25:15: Debug:    TIMER:  1038000000 ns ( 1038 ms )  -  "loading add-ons"
RDebug.cpp:81, static int RDebug::stopTimer(int, const QString &, int):
11:25:19: Debug:    TIMER:  18446744073365584320 ns ( 18446744073365 ms )  -  "initializing add-ons"
RScriptHandlerEcma.cpp:1468, static QScriptValue RScriptHandlerEcma::ecmaMessageHandler(QScriptContext *, QScriptEngine *, RS::MessageType):

For whatever reason, libqcadexample.so and libtransactionlistener.so don’t get named _debug.so (which seems to be the cause for the message), while libqcaddxf_debug.so seems to be OK.

The following diff sorts this out, with no apparent ill effect:

diff --git a/support/examples/exampleplugin/exampleplugin.pro b/support/examples/exampleplugin/exampleplugin.pro
index 0c58c56..d72a866 100644
--- a/support/examples/exampleplugin/exampleplugin.pro
+++ b/support/examples/exampleplugin/exampleplugin.pro
@@ -1,7 +1,8 @@
-include(../../../shared.pri)
 CONFIG      += plugin
 TARGET      = $${RLIBNAME}example
 
+include(../../../shared.pri)
+
 TEMPLATE    = lib
 HEADERS     = RExamplePlugin.h
 SOURCES     = RExamplePlugin.cpp
diff --git a/support/examples/transactionlistener/transactionlistener.pro b/support/examples/transactionlistener/transactionlistener.pro
index ed6c84d..7ee9bef 100644
--- a/support/examples/transactionlistener/transactionlistener.pro
+++ b/support/examples/transactionlistener/transactionlistener.pro
@@ -1,7 +1,8 @@
-include(../../../shared.pri)
 CONFIG      += plugin
 TARGET      = transactionlistener
 
+include(../../../shared.pri)
+
 TEMPLATE    = lib
 HEADERS     = TransactionListenerPlugin.h
 SOURCES     = TransactionListenerPlugin.cpp
 560 QCAD (main)Bug ReportVery Low Some parameters changes lost after saving and reopening ...Closed
100%
Task Description

Hi,
First of all, thanks for this wonderful product !

My issue : when I modify (at file level) some parameters like the number of decimals in cotations, or the linethikness of a calc, these modifications are lost after saving and reopening the dxf. It comes back to the default values. It is not the case for the colors for instance.

At your disposal for other informations.
Fred

 2071 QCAD (main)Feature RequestLow Solid hatch fade Closed
100%
Task Description

It may be useful to implement the fade function in solid hatches, as present in the image options

 469 QCAD (main)Bug ReportLow Solid entity properties Closed
100%
Task Description

Split from  FS#465  by Stefan:

After more testing, it seems that a solid triangle causes trouble, perhaps correlated to Z-coordinates and the property editor.

Attached you find a dxf example file with only 7 objects. Three noticable cases:
- Selecting all and change Selection in the property editor to “Solid” flips to “No Selection” although objects selected.
- Selecting all and change Selection in the property editor to “Line” shows “Length” and “Angle” in Geometry with “*VARIES*” values although only one line is selected.
- Selecting all but the solid object (6 objects selected now), everything works as expected, in particular Selection “Line” shows valid values (and Z-coordinate 0).

I hope this helps, please give instructions how to help if necessary.

 710 QCAD (main)Bug ReportLow snapshot 3.0.3 - input fields showing ' Expression is e ...Closed
100%
Task Description

Windows 7 -64
snapshot 3.0.3 - tool input fields showing ' Expression is empty ' , even after inputting values.

 2211 QCAD (main)Bug ReportLow Snapping broken if block is mirrored. Closed
100%
Task Description

Using block library and inserting a block automatic snapping is broken id the block is mirrored.

Attached is one of the blocks causing the error and a screengrab.

Tried this on another machine with 2.6.2 with same bug

 1379 QCAD (main)Bug ReportLow Snap: cannot snap to intersection between infinite line ...Closed
100%
Task Description

Intersections between polylines and XLines (infinite lines, contruction lines) cannot be found in some situations.

 2208 QCAD (main)Bug ReportLow Snap: Cannot snap to block arrays Closed
100%
Task Description

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

 1088 QCAD (main)Bug ReportLow Snap: can snap to endpoints of text entities in block r ...Closed
100%
Task Description
  • Create block with text entity in it
  • Insert block reference
  • Snap tools snap to endpoints, centers, etc. of text entity shapes
 126 QCAD (main)Feature RequestLow Snap to reference points of arcs Closed
100%
Task Description

Snap to reference points does not work for arc entities as one would expect.
The four points on the arc at angles 0,90,180,270 should be reference points (like for circles).

 492 QCAD (main)Bug ReportLow Snap to intersection manual in block references Closed
100%
Task Description

Wenn ich versuche einen Block zu verschieben mit dem Ziel “Intersection manual” wird nicht die im Block ausgewählte Linie benutzt sondern alle im Block befindlichen Linien die eine “Intersection manual” ermöglichen würden.

Auch die visuelle Auswahlerleichterung einer Linie (Farbe ändert sich beim drüberfahren mit der Maus) wird im Block nicht unterstützt :(

 254 QCAD (main)Bug ReportLow Snap to ellipse / ellipse intersections Closed
100%
Task Description

Snap to ellipse / ellipse intersections

 1150 QCAD (main)Bug ReportLow Snap to dimension reference points Closed
100%
Task Description

... except reference points I can’t anymore snap to any line on a Dimension. To make a proper alignment I need to use the Grid or other entities.

 386 QCAD (main)Bug ReportLow Snap to center: does not work for circles in block refe ...Closed
100%
Task Description

Snap to center: does not work for circles in block references

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

 132 QCAD (main)TaskLow Snap restrictions Closed
100%
Task Description

Implement snap restrictions

 144 QCAD (main)Bug ReportMedium snap restriction buttons are not toggled Closed
100%
Task Description

the buttons works, but are not toggled (”restriction off” is always pushed)

 31 QCAD (main)Bug ReportMedium Snap Coordinate / option toolbar: uncaught exception Closed
100%
Task Description
  • draw → line → snap coordinate
  • draw → line → snap polar coordinate
'setButton'"Set"

problem: the option tool bar isn’t show at all

 331 QCAD (main)Bug ReportLow Snap buttons doubled Closed
100%
Task Description

1. For some reason on the Window machine, the snap toolbar buttons are doubled for all functions. I therefore have two buttons for each type of snap and cannot access the bottom snaps unless I undoc the toolbar.

For some reason, this is still fine in the Linux Beta 3. Single buttons like always.

Reported by: koosjr

 244 QCAD (main)Performance IssueLow snap auto Closed
100%
Task Description

Snap defaults to auto. Auto snap gets slow in areas where there are many places it can snap to.

 2420 QCAD (main)Bug ReportLow Snap > X/Y from Points / Y/X from Points: command line  ...Closed
100%
Task Description

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

 1199 QCAD (main)Feature RequestLow Snap > Tangential Closed
100%
Task Description

Could it be possible to add a ‘Snap to tangent’ tool? Please see the below image for an use-case.
Thanks in advance.

 542 QCAD (main)Bug ReportLow Snap > Restrict horizontal cannot be applied to Snap >  ...Closed
100%
Task Description

Vorgabe: Kreis der verschoben werden soll auf einen Punkt zwischen zwei Vertikale Linien.

Auswahl des Kreises,
Funktion Verschieben/Kopieren,
Referenzpunkt = Mitte Kreis,
Zielpunkt Middle Manuel,
Erster Punkt = Center 1. vertikale Linie,
Zweiter Punkt restricted Horizontal zum ersten Punkt,
QCad benutzt nun fälschlicher Weise den Referenzpunkt des Kreises anstatt den Center der bereits gewählten 1. vertikalen Linie ....

 1186 QCAD (main)Bug ReportLow Snap > Intersection manual: not working for polyline se ...Closed
100%
Task Description

Snap to “Intersection manual” is only working in dependency on Line/Polyline orientation.

Two Polylines (not each other crossing): doesn’t works.

One Line, one Polyline (not each other crossing) works only in dependency on entity orientation.

 1253 QCAD (main)Bug ReportLow Snap > Intersection Manual: no result between line and  ...Closed
100%
Task Description

See:
http://www.qcad.org/rsforum/viewtopic.php?f=32&t=3661

 2239 QCAD (main)Bug ReportLow Snap > Coordinate: Confirm coordinate with number block ...Closed
100%
Task Description

Feature request? Bug? I don’t know ... ;-)

NumBlock Enter key is not accepted by “Coordinate” tool to confirm the settings in the option bar (green Arrow icon). Enter key on main keyboard works.

Very confusing when you are used to type in all numbers with the NumBlock (what is very fast) but to confirm you have to use the “far away” Enter on the Main keyboard ... ;-)

 2275 QCAD (main)Bug ReportLow Snap > Center: snapping to center of polyline arc segme ...Closed
100%
Task Description

QCAD Professional
Win7Pro WinInstaller
Version: 3.26.4.5 (3.26.4.5)
Internet: QCAD.org
Build Date: Jul 20 2021
Revision: e596276
Qt Version: 5.13.2
Architecture: i386
Compiler: Unknown

See attached file:
- The 9 center snapping points of the 24 bulging segments are all presumed to be incorrect
- For some segments the center snap is outside the arc shape from a bulging segment
- For some segments there are 2 solutions

Regards,
CVH

 1315 QCAD (main)Performance IssueLow Snap > Auto Snap: slow when snapping to complex polylin ...Closed
100%
Task Description

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

 2090 QCAD (main)Bug ReportLow Snap > Auto Snap: intersections of pattern with other e ...Closed
100%
Task Description

- Create hatch with pattern “ANSI31” (or other).
- Move cursor along boundary with auto snap
- Auto snap finds intersections between hatch pattern and boundary or other entities close to the hatch boundary

 367 QCAD (main)Feature RequestLow Snap "Reference" also for an arc ... Closed
100%
1 Task Description

The Snap “Reference” is perfect working on circles.

I would be nice to have this function also on Arc’s.
There are many necessities to attach a Horizontal or Vertical line on an arc or an “ex circle” (circle after a cut,)rounds etc. in a professional drawing.

 1197 QCAD/CAMBug ReportLow Small Polyline offset with 'round join' makes line segm ...Closed
100%
Task Description

When making an offset of a polyline with ‘round join’ enabled, and making a small offset of 0.0015 inches, no arcs are made, only coarsely interpolated line segments.
Further tests show that this is true until the offset is increased 0.040 inches; then the offset begins to create arcs.

The creation of arcs in a polyline offset with such small distances did work in QCAD 2.x.

 1717 QCAD (main)Bug ReportLow small fix in startup script Closed
100%
1 Task Description

The current startup script fails when called through symbolic link due to string:

DIR=${0%/*}

It is better to change it to:

DIR=$(dirname -- $(readlink -f -- $0))
 233 QCAD (main)Performance IssueLow Slower selection / manipulation Closed
100%
Task Description

Slower selection / manipulation compared to QCAD 2.

 112 QCAD (main)Performance IssueLow Slow startup because of Library Browser Closed
100%
Task Description
  • initial start (no library browser DB present)
  • Linux vostro 2.6.37.6-0.5-desktop #1 SMP PREEMPT 2011-04-25 21:48:33 +0200 i686 i686 i386 GNU/Linux
  • DWG / DXF files: 79
  • SVG files: 684
  • RDF files: 729
real    1m37.298s
user    1m35.101s
sys     0m0.806s
 2438 ECMAScriptBug ReportLow simple_modify.js > Faulty parameter explanation docDest ...Closed
100%
1 Task Description

Andrew,

simple_modify.js
function paste()
10 * \param docDestination RDocument to paste into (or undefined for current document)

A) This should be a document interface of the type RDocumentInterface.
B) The function uses the parameter diDestination and not docDestination

https://www.qcad.org/rsforum/viewtopic.php?f=30&t=9742

Regards,
CVH

 1308 QCAD (main)Bug ReportLow Simple text: x-scale not saved Closed
100%
Task Description

Create simple text (no formatting)
Set x scale to a factor other than 1
Save and reload
X scale is reset to 1

 351 QCAD (main)Bug ReportLow Simple text: position, simple text flag Closed
100%
Task Description

Simple text tool does not create simple text but mtext.
When changed to simple in property editor, position does not work

Showing tasks 301 - 350 of 2560 Page 7 of 52<<First - 5 - 6 - 7 - 8 - 9 - Last >>

Available keyboard shortcuts

Tasklist

Task Details

Task Editing