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)

IDCategory  ascTask TypeSeveritySummaryStatusProgress
 508 QCAD (main)Feature RequestLow zoom speed option Closed
100%
1 Task Description

Add a zoom speed option in preferences

 1764 QCAD (main)Feature RequestLow Zoom in with middle click Closed
100%
1 Task Description

I would suggest adding a feature Inkscape has, which is that a single middle click zooms in. This is not at the detriment of panning, since the mouse/pen (I use a Wacom tablet) doesn’t move. Right now middle click doesn’t do anything so I don’t think it should be a problem.

Another awesome and related Inkscape zooming feature is that Shift+middle click shifts to window zooming. But with the added bonus that you don’t lose the tool you’re in. Try it out on Inkscape if I’m not clear!

Cheers,
JFL

 1245 QCAD (main)Bug ReportLow Zoom in / zoom out: drawing painted at inconsistent off ...Closed
100%
Task Description

Zooming in or out repeatedly (keeping + or - key pressed or using mouse wheel) shows the drawing at incorrect offsets in between frames with the correct offset.

Original report:

Zoom in and out with the Mouse wheel is working but it is unfortunately jumping in a zickzack course.

 1461 QCAD (main)Bug ReportLow Zoom in / out: not centred under mouse cursor if Retina ...Closed
100%
Task Description

see topic:
http://www.qcad.org/rsforum/viewtopic.php?f=33&t=4381&p=15906#p15906

 2522 QCAD (main)Bug ReportLow Zoom box preview Closed
100%
Task Description

When screen-based linetypes are enabled, the zoom box width depends on the zoom level and can get very wide / thin.

1811QCAD (main)Feature RequestLowZoom 1:1Assigned
0%
2 Task Description

It would be nice to be able to adjust the zoom factor so that the scale on the screen matches a ruler which I lay on the screen.

Thanks!

 1022 QCAD (main)Bug ReportLow ZeroLengthDetection fails on arc Closed
100%
Task Description

Hi,

it seems zero length detection fails on finding very small arcs.
As in previous 3.0.0 release the script ZeroLengthDetection.js was given, I found that the related line is #65 :

      } else if (isArcEntity(entity)) {
          if (entity.getRadius() <= this.distanceTolerance

should be

      } else if (isArcEntity(entity)) {
          if (entity.getLength() <= this.distanceTolerance

because a big radius with a very small angle will yield a very small arc length ...

Since 3.0.0 or so, the ZeroLengthDetection.js script seems to have been binarized in plugins/libqcadproscripts.so, and is not easily correctible any more ...

 1557 QCAD (main)Bug ReportLow Zero length lines not shown Closed
100%
Task Description

Zero length lines are not shown in QCAD. For best compatibility these should be shown as dots.

 2432 QCAD (main)SuggestionLow Your tracker site needs an update Closed
100%
Task Description

Notice: Trying to access array offset on value of type bool in /home/qcadch/public_html/bugtracker/scripts/details.php on line 222

Saw many other errors when I first logged on.

 1011 QCAD (main)Bug ReportLow Y,R Works only some of the time! Closed
100%
Task Description

On a 2011 MacBook Air, the Y,R key combination for deleting layers barely works. It does in fact delete a layer occasionally, and oddly it appears to go in spurts. But it does not consistently work which significantly reduces its usefulness.

While on the matter, the reason to use YR is mostly because there is no bulk way to select a bunch of layers and delete them! This is a real pain if needing to separate layers apart (becomes some CAM programs will only accept one layer per file. We need a way to select a bunch of layers, and just delete the whole lot at one time.

 1062 QCAD (main)Bug ReportLow Xrefs are not displayed Closed
100%
Task Description

I have a .dwg file, which has two images attached. When I open this file in qcad from the source folder with images xrefs are lost and qcad doesn’t even report about lost xrefs.

Is it possible in general to open .dwgs with xrefs in qcad?

How to fix it?

Thank you in advance!
Anastasia

 2064 QCAD (main)Bug ReportLow XLines in blocks appear shortened Closed
100%
Task Description

Coming from https://www.qcad.org/rsforum/viewtopic.php?f=76&t=7148 ...

I create help lines of infinite length inside a block, layer is “helplines”, red, 0,25mm, DOT(2x). Inside the block I can see the lines at any zoom level. Leaving the block editor, the lines are getting shorter when zooming closer. Zooming far away the lines look like infinite length, zooming closer, the lines look like cut shorter, and zooming very close, the lines disappear completely.

As Husky confirmed:

Infinitive lines in blocks are displayed shortened in Model_Space. I would consider that a bug which pertains the QCAD Pro version too.
 1138 QCAD (main)Feature RequestLow Xlines (infinite lines) via 'Parallel Line' Closed
100%
Task Description

Would it be possible to add Xline (infinite line) draw via ‘Parallel Line’ tool?

 885 QCAD (main)Bug ReportLow Xcode Clang wrongly reported as GCC Closed
100%
Task Description

src/core/RSettings.cpp:RSettings::getCompilerVersion() doesn’t account for Clang, used in Xcode. Instead of reporting the appropriate Clang version number, it reports the GCC compatibility level. The following patch addresses the issue.

diff --git a/src/core/RSettings.cpp b/src/core/RSettings.cpp
index 46dc6df..d6fbe63 100644
--- a/src/core/RSettings.cpp
+++ b/src/core/RSettings.cpp
@@ -363,7 +363,9 @@ QString RSettings::getQtVersion() {
 }
 
 QString RSettings::getCompilerVersion() {
-#if defined(Q_CC_GNU)
+#if defined(Q_CC_CLANG)
+    return QString("Clang %1.%2.%3").arg(__clang_major__).arg(__clang_minor__).arg(__clang_patchlevel__);
+#elif defined(Q_CC_GNU)
     return QString("gcc %1.%2.%3").arg(__GNUC__).arg(__GNUC_MINOR__).arg(__GNUC_PATCHLEVEL__);
 #elif defined(Q_CC_MSVC)
 #   if _MSC_VER==1310
 1622 QCAD (main)Bug ReportLow X Scale Property lost for Simple Texts and Attributes Closed
100%
Task Description

The X scale of block attributes, (and simple text) is not being saved with the drawing.
This problem was fixed for a while, but has re-appeared lately.

 462 QCAD (main)Bug ReportLow Wrong zoomlevel by open with double click Closed
100%
Task Description

When i open a dxf with a double click in my windows-explorer the drawing views very very small.
(win7/64/ger, qcad3 RC3)

 1432 QCAD (main)Bug ReportLow Wrong x scale for imported texts Closed
100%
Task Description

If text style has a text width (x scale) that is not 1, the property x scale from the text style is applied to all texts of that style.
See also:
http://www.qcad.org/rsforum/viewtopic.php?f=33&t=4266

 887 QCAD (main)Bug ReportLow Wrong warning window with area selection ... Closed
100%
Task Description

Lower left to upper right selection which includes invisible blocks causes warning window if I try to use the clipboard “copy” or “cut” function:

“Trying to draw on or modify entities on a locked or invisible layer”

... but it works!

Upper right to lower left selection over all doesn’t calls the warning window!

 1495 QCAD (main)Bug ReportLow wrong utf8 encoding|decoding Closed
100%
Task Description

QCAD Community Edition:

Hi!
I created a document at home with QCAD and added text in Russian language. The OS is OpenSuse 42.1. Now I need to edit the document at work on Windows 7 and I can’t open the document because an error appear!
I think this happend because Linux version of QCAD has put text to the document in UTF-8 in style of: 04_\U+00CD\U+00EE\U+00EC\U+00E5\U+00F0\U+00D3\U+00F7\U+00E0\U+00F1\U+00F2\U+00EA\U+00E0
but in Windows 7 codepage is Windows-1251. So I need to change QCAD to anothe software to exclude this issue because I can’t to work. QCAD error looks like: Can’t open the file.....import error!
I supposed that common software ensured me from different errors and troubles, but actually not!

Can you solve the problem?

 395 QCAD (main)Bug ReportMedium wrong text origin when pasting scaled text and graphics Closed
100%
Task Description

Text origins are not properly scaled when pasting text and graphics at a scale other than 1:1

 1335 QCAD (main)Bug ReportLow Wrong tangential snap point by moving an existing line  ...Closed
100%
1 Task Description

When I try to make a tangential snap of an existing line to a circle by moving one line end to the circle, qcad snaps to a wrong snap point on the circle.

 251 QCAD (main)Bug ReportMedium wrong tab names Closed
100%
Task Description

After I open the second file, the tab name of the first file is changed to the name of second file. After that I see two tabs with the same names but with two different files.

 1336 QCAD (main)Bug ReportLow Wrong snap points on circle Closed
100%
Task Description

When you draw a line to a circle the offered snap points (orthogonal, tangential ...) are ok.
But if you change a line by moving an end- or startpoint qcad gives you snap points corresponding to the opposite endpoint of the line.

 1729 QCAD (main)Bug ReportLow Wrong sizes for dimensions in blocks viewed through vie ...Closed
100%
Task Description

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

 170 QCAD (main)Bug ReportMedium wrong scaling for ellipses / ellipse arcs Closed
100%
Task Description
  • see attachment
  • factor x/y: 0.5
  • green: original entities
  • red: properly scaled entities
 1919 QCAD (main)Bug ReportVery Low Wrong order XY(Z) for Ordinate Dimension in property ed ...Closed
100%
Task Description

Win7pro Qcad Pro 3.22.1.2

In property editor
properties of an Ordinate Dimension

Without Show Z
DefPoint is displayed in order YX?

With Show Z
Origin is displayed in order XZY?
DefPoint is displayed in order YZX?
LeaderEndPoint is displayed in order ZXY?

Regards

 2112 QCAD (main)Bug ReportLow wrong objects are selected while selecting region with  ...Closed
100%
1 Task Description

wrong objects are selected while selecting region with mouse.
Actions:Trying to select small rectangle area using mouse while holding left mouse button. (ScreenShot_1.jpg)
Expected result: only objects inside selection rectangle (text, lines, rectangles) are selected.
Factual result: objects inside selection rectangle are selected as well as other objects which are farther away (marked with purple arrows in ScreenShot_2.jpg)

 2113 QCAD (main)Bug ReportMedium wrong objects are selected while selecting region with  ...Closed
100%
1 Task Description

wrong objects are selected while selecting region with mouse.
Actions:Trying to select small rectangle area using mouse while holding left mouse button. (ScreenShot_1.png)
Expected result: only objects inside selection rectangle (text, lines, rectangles) are selected.
Factual result: objects inside selection rectangle are selected as well as other objects which are farther away (marked with purple arrows in ScreenShot_2.png)

 1704 QCAD (main)Bug ReportLow Wrong labels for information area buttons Closed
100%
Task Description

In Information → Arc/circle/ellipse area tool labels for Area of sector and Area of segment buttons are switched.

 851 QCAD (main)Bug ReportLow Wrong font name in DXF files created with dxflib 3.1 Closed
100%
Task Description

dxflib 3.1 saves the text style name as style font in text styles.

 812 QCAD (main)Bug ReportLow Wrong Alert messages ... Closed
100%
Task Description

3.1 Beta / XP32

Two Points (C2),
Two Points and Angle (A2),
Two Points and Radius (CD),
ONE Mouse-click = Alert message: “The two points are identical”

Tangent two circles (LT2),
Click on first circle = Alert message: “No tangent possible”,
Click on second circle = Alert message: “No tangent possible”

 1115 QCAD (main)Performance IssueLow Windows: slow file dialogs Closed
100%
Task Description

Windows 7 Professional 64bit SP1

File > Open shows empty dialog for 1 minute, then shows dialog contents.

 2008 QCAD (main)Bug ReportLow windows: cannot call scripts\Pro\Tools\BoundingBox\Boun ...Closed
100%
1 Task Description

Calling bbox tool via batch file works:

C:\Program Files\QCAD>bbox.bat D:\tmp\dwgtester\10.09.03.dwg

Output:

09:42:15: Debug:

You are using a trial version of QCAD Professional.

09:42:15: Debug:    If you would like to use this software productively,
09:42:15: Debug:    please purchase the full version for a small license fee from our
09:42:15: Debug:    Online Shop at:
09:42:15: Debug:    http://www.ribbonsoft.com/shop

09:42:15: Debug:    Thank you for trying this add-on!


09:42:15: Debug:    Your script will start in 15 seconds...
09:42:30: Debug:    calling odInitialize
Min: 2419.9969114297623/-125.36162367587679
Max: 2689.9969114297623/64.63837647546899
Size: 270/190.00000015134577

Calling bbox tool directly doesn’t work:

C:\Program Files\QCAD>qcad.exe -no-gui -allow-multiple-instances -autostart scripts\Pro\Tools\BoundingBox\BoundingBox.js D:\tmp\dwgtester\10.09.03.dwg

Output (empty line):


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,

 1328 QCAD (main)ReleaseLow Windows 64bit install dir Closed
100%
Task Description

I only noticed today (perhaps they were available earlier?) that there are 64 bit binaries for windows; I suppose these are true 64 bit.

Yet, the installer prompts me to put them into “Programs (x86)”, where all the 32bit software lives, I guess - this seems to be a pure convention though, the application runs just fine.

Maybe the reason is, that the 32bit version was installed before; Maybe it should change? Maybe it should stay, so that there are not two?

 987 QCAD (main)Bug ReportLow Window size bigger than screen, unable to reduce it Closed
100%
Task Description

Using the 32-bit linux .tar.gz package on Opensuse 12.3 - KDE4, it opens with a window size larger than the screen (you cannot reach the maximise, minimise icons with the mouse.
Having maximised it with the keyboard, using the mouse on the corners the window can only be stretched in the east-west dimension and remains at a fixed height. I have reverted to 3.4.2 which is fine.

Bob

 2051 QCAD (main)Bug ReportLow Window selection of rotated and aligned dimensions with ...Closed
100%
Task Description

Please see item 1) in topic https://www.qcad.org/rsforum/viewtopic.php?f=33&t=7037 item 2) I can’t reproduce at present

Issue is about left→right selection of dimensions.

Thank you.

 861 QCAD (main)Bug ReportLow Widgets blends to early in ... Closed
100%
Task Description

I don’t know: Bug or Feature request ....

Example: If I move the “Library Browser” with the mouse closer than ~63px to the top corner it will go to blend in.
Undo doesn’t works in this case - so I have to pull it out and re-size the widget.

Usually it should blend in if I’m over the bar or at least I have to be much closer to the corner - or not?

 124 QCAD (main)Feature RequestLow White lines in SVG Closed
100%
Task Description

In DXF world, as far as I know, colour 7 - white - is magic, in that it shows white in model space on a black background, possibly also black on a light background, and commonly black in paper space irrespectively of background colour. In my opinion, SVG should be considered paper space.

I propose, that white entities get rendered black in SVG files exported from QCAD. What do you think?

1754QCAD (main)SuggestionLowWhen Selecting multiple blocks that contain the same at...Assigned
0%
Task Description

When selecting multiple blocks that contain the same attribute names, attribute properties appear with the values of the last selected block instead of “various”. I do not know if this is a “bug” or developer option, but “various” would be better in my opinion.

 666 QCAD (main)Bug ReportLow When opening a qcad edited or created dwg in autocad, o ...Closed
100%
Task Description

When opening a qcad edited or created dwg in autocad, only the first line of text is displayed for each Qcad edited or created text entry.
Qcad 3.0.0 Autocad Mac 2011
You can see that when opening the drawing in Autocad that only the First line of text is present.

 679 QCAD (main)Bug ReportLow When drawing, a "escape" does not always cancel the las ...Closed
100%
Task Description

This problem experienced since the first beta in both Win and Linux versions.

When a function (like a line) was selected for use and one press ESC twive to get back tot he main menu, it sort of does not cancel that last function. If one wouls now press on another function (like edit or circle) QCAD goes back to the line function.

the only way to rectify this is to press Esc many times. Sometimes the process needs to be repeated more than once.

I could not yet devise a sure fire way of reproducing this, but it does seems to happen as soon as the drawing gets bigger. I could not make it work with a clean page.

Although not crippling, it does break the elegance of drawing seamlessly and is a bit frustrating..

That said, I find QCAD 3.0.0 now significanlty faster than the Betas when loading and zooming in and out.

 534 QCAD (main)Feature RequestLow Werkzeug Lengthen erweitern mit minus amount .... Closed
100%
Task Description

Wäre schön wenn das Werkzeug “Lengthen” auch mit Minus Amounts funktionieren würde ....

 1892 QCAD (main)Bug ReportLow weird/inconsistent text-alignment Closed
100%
Task Description

I guess I’ve discovered a bug:

Text elements align the same no matter if “base” or “bottom” alignment is chosen. The text is “shifting” (in both cases) when the characteristic “contains glyphs that cross the base line” is changed. Same shifting also occurs with text aligned “top” with having no glyphs reaching the top-line.
I assume this isn’t the intended behaviour ...

For demonstration I attached a file where I’ve put lines (to align with) and three sample texts “as” (only “center”-glyphs), “aps” (glyph crossing base-line) and “this” (glyphs reaching top-line), each aligned with all vertical alignment-options (1-top, 2-midlle , 3-base , 4-bottom).

Hope fixing this dosen’t take too much effort.
Regards,
Volker

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

 66 QCAD (main)Bug ReportLow Warnings to fix Closed
100%
Task Description

Fix warning on start:
Warning: RGuiAction::getByScriptFile: no action found: “scripts/Snap/Coordinate/Coordinate.js”

 607 QCAD (main)Feature RequestLow Warning needed Closed
100%
Task Description

When trying to Move an object to a layer that is locked nothing happens and no warning, so it difficult to figer out what is the reason.

The same happens when the default layer is locket. No way to add an object and no warning helps to understand what is going on.

A warning message should be displayed when such a situation occurs.

May be the default layer should never be locked.

[Edit: warnings are display in the command line history]

 793 QCAD (main)Bug ReportLow Wacom Intuos tablet with mouse not working Closed
100%
Task Description

Intuos Mouse (moving around on the Intuos Tablet)

  • does work for drawing and marking with the left button on the drawing area
  • does work for zooming in and out with the middle-button wheel
  • does work for calling up context menus with the right button on the menu bar and the layer list window
  • does not work with the left button for actually clicking any menu item (Edit, View, ..) nor action icon on the top nor the left (e.g., draw lines, measure, zoom, undo, save, ..) nor the layer window (e.g., toggle visible, lock layer) nor the property editor.

Wacom mouse model: ZC-100-01
win7-64 sp1

 546 QCAD (main)Bug ReportLow visible hint lost in RC5 if hatch loop not closed Closed
100%
Task Description

RC4 and RC5 lost the very useful visible hint that was shown in RC2 at the invalid point of a non-closed boundary.

If this is not a bug, this task is a feature request to re-insert this feature. ;-)

 1775 QCAD (main)Bug ReportLow Viewports: images sometimes not clipped at viewport edg ...Closed
100%
Task Description

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

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

Available keyboard shortcuts

Tasklist

Task Details

Task Editing