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
 1060 QCAD (main)Bug ReportLow Property editor: read only text entity property editabl ...Closed
100%
Task Description
  • Select text entity
  • Right-click on line edit of property ‘Plain Text’
  • Insert symbol
 1059 QCAD (main)Bug ReportLow Command line tools: log file permissions Closed
100%
Task Description

Command line tools may not have permissions to create bat_log. Windows error:

Access is denied.
The system cannot find the file specified.
Could Not Find C:\Program Files (x86)\<tool>\bat_log

 1058 TranslationBug ReportLow Benutzerreferenz, anstatt skaliert wurde rotiert verwen ...Closed
100%
Task Description

In der Benutzerreferenz für Skalieren wurde irrtümlich das Wort “rotiert” anstatt “skaliert” verwendet

 1057 TranslationTaskLow Japanese translation missing in a couple spots .... Closed
100%
Task Description

Is the Japanese translation still in progress or is this a update Problem?

 1056 QCAD (main)RefactoringVery Low Dead and wrong code in RSPlatform.cpp Closed
100%
Task Description

I am considering pushing the following diff:

--- a/src/core/RSPlatform.cpp
+++ b/src/core/RSPlatform.cpp
@@ -205,25 +205,6 @@ int RS::getCpuCores() {
     cores = sysinfo.dwNumberOfProcessors;
 #elif defined(Q_OS_UNIX)
     cores = sysconf( _SC_NPROCESSORS_ONLN );
-#elif defined (Q_OS_MAC) || defined (Q_OS_BSD4) || [...]
-    nt mib[4];
-    size_t len;
-
-    /* set the mib for hw.ncpu */
-    mib[0] = CTL_HW;
-    mib[1] = HW_AVAILCPU; // alternatively, try HW_NCPU;
-
-    /* get the number of CPUs from the system */
-    sysctl(mib, 2, &cores, &len, NULL, 0);
-
-    if (cores < 1) {
-        mib[1] = HW_NCPU;
-        sysctl( mib, 2, &cores, &len, NULL, 0 );
-    }
-#elif defined(Q_OS_HPUX)
-    cores = mpctl(MPC_GETNUMSPUS, NULL, NULL);
-#elif defined(Q_OS_IRIX)
-    cores = sysconf( _SC_NPROC_ONLN );
 #endif

(truncated list to manage size)

I see that most of this was put in there as a kind of a note-to-self originally, however _SC_NPROCESSORS_ONLN is implemented by every realistically possible targets anyway, so for all practical purposes, this is dead weight.

A couple of questions remain, though:

  • #ifdef Q_OS_WIN32 should probably be Q_OS_WIN, so as to include win64 as well.
  • Assuming the real purpose for this function is to determine how many parts a particular task is to be split into in the future, if and when QCAD gets the need to split expensive tasks among multiple CPUS, “core” probably shouldn’t be static - CPUs are hot-pluggable today, and while one probably doesn’t do that on a laptop, it’s not unfeasible in, say, a VDI environment.

Thoughts?

 1055 QCAD/CAMBug ReportLow code page problem Closed
100%
Task Description

After creating the labels in drawing in Russian (Cyrillic), after saving and reopening the drawing file - changing the text encoding (??????????). Need to re-type the text ... How to fix this error?

 1054 QCAD (main)Bug ReportLow About box ceased to work Closed
100%
Task Description

e51f274, Linux x64, Qt 4.8.4, g++ 4.8.1, with the following diff present as per  FS#1050  for tests:

--- a/src/core/RS.cpp
+++ b/src/core/RS.cpp
@@ -36,6 +36,7 @@
 
 #if defined(Q_WS_X11)
 #include <X11/Xlib.h>
+#include "/.old.linux/usr/include/fixx11h.h"
 #endif
 
 const double RS::PointTolerance = 1.0e-9;

The Help→About dialog ceased to pop up or otherwise work; instead, there’s this debug message printed to the console:

Warning:  "QFormBuilder was unable to create a custom widget of the class 'QWebView'; defaulting to base class 'QWidget'." 
Warning:  "QFormBuilder was unable to create a custom widget of the class 'QWebView'; defaulting to base class 'QWidget'." 
Warning:  "QFormBuilder was unable to create a custom widget of the class 'QWebView'; defaulting to base class 'QWidget'." 
Warning:  "QFormBuilder was unable to create a custom widget of the class 'QWebView'; defaulting to base class 'QWidget'." 

This also pops up one time at application startup, as far as I can tell, just before the main window starts to get mapped.

 1053 QCAD (main)Feature RequestLow Part Library: support for custom properties Closed
100%
Task Description

If a part library file contains a block with block name==file name, QCAD could directly insert the file contents instead of grouping it into a new block with block name==file name.
This would allow part library items to contain block references with custom properties which would be copied into the drawing on insertion.

 1052 QCAD (main)Performance IssueLow (Isometric) projection: poor preview performance Closed
100%
Task Description

Preview performance can be improved by projecting only once and then moving / pasting the projection.

1051QCAD (main)Feature RequestLowInfo tool, polygonal area, possibility for a postfix la...Assigned
0%
1 Task Description

... would be nice.

If I use the Info tool “Polygonal area” with the option “Add measurement to the drawing” I always have to edit the Value to make clear that we now looking to an area value like m² or ft².

I was thinking that a pre labeling (prefix/postfix) like the normal Dim tools could save me a couple extra steps ... ;-)

 1050 QCAD (main)Bug ReportLow Compilation error under Linux / X11 (c60189 build failu ...Closed
100%
Task Description

This has been in for a couple of revisions now

RS.cpp: In static member function ‘static bool RS::compare(const QVariant&, const QVariant&)’:
RS.cpp:204:30: error: expected unqualified-id before ‘int’
     if (v1.type()==QVariant::Bool && v2.type()==QVariant::Bool) {
                              ^
RS.cpp:204:30: error: expected ‘)’ before ‘int’

g++ 4.8.1, Qt 4.8.4, Ubuntu 12.10.

 1049 QCAD (main)Feature RequestLow Property editor: make behavior with block references /  ...Closed
100%
Task Description

Configuration option for property editor:

  • if block reference with attributes is selected, filter by block reference
  • if block reference with attributes is selected, show all selected entities (no filter)
 1048 QCAD (main)Bug ReportLow Support "ByBlock" for block attributes Closed
100%
Task Description

E.g. if a block reference has its color set to ‘red’ and the block reference has an attribute with color=’ByBlock’, the attribute should be displayed in red.

 1047 QCAD (main)Bug ReportMedium Preview does not use drawing settings Closed
100%
Task Description

See forum thread:
http://www.qcad.org/rsforum/viewtopic.php?f=33&t=2909

1046QCAD (main)Feature RequestLowPlease add script bindings for Qt 4.8.6 and 5.2.1Assigned
0%
Task Description

These are the versions Ubuntu 14.04 comes with, and since it’s an LTS version, it will linger around a while.

(Despite the fact that the Qt4 packages are versioned 4.8.5, qmake –version says 4.8.6, so it doesn’t find the 4.8.5 bindings.)

Thanks,

 1045 QCAD (main)Bug ReportLow Info > Distance ...: ticks are not using correct spacin ...Closed
100%
Task Description

Tick spacing is based on fractions for metric units.

1044QCAD (main)Feature RequestLowRadian measure symbol for Geometry labeling ...Assigned
0%
2 Task Description

We do not have a Radian measure tool but we can change the labeling of a Angular Dimensioning ...

It would be nice to have a “Radian measure symbol” in the Property Editor / Geometry / Label / Insert Symbol List.

 1043 QCAD (main)Bug ReportHigh QCAD 3.4.7 pro crash Closed
100%
Task Description

Hello!

intensive work in QCAD 3.4.7 pro leads to crash it after 30-40 minutes.

Console output (OS Debian jessie):

Could not allocate register file: 12
./qcad: line 18: 6266 Segmentation fault LD_LIBRARY_PATH=”$DIR” “$binary” -style plastique “$@”

 1042 QCAD (main)Bug ReportVery Low Preferences dialogs: help button shown in dialog header Closed
100%
Task Description

See:
http://www.qcad.org/rsforum/viewtopic.php?f=33&t=2887&view=unread#unread

 1041 QCAD (main)Bug ReportLow Zoom to selection: invalid view if only one point is se ...Closed
100%
Task Description

- Select one single point
- Zoom to selection

 1040 DocumentationBug ReportLow Break out Manual on Circle/Ellipse does not respect Rem ...Closed
100%
Task Description

3.4.7 trial as well as community Git 9d3979

  • Draw a circle
  • B2
  • Make sure “Remove segment” is ticked
  • Select circle, then select two points to break out in between

Expected:

  • Segment gets removed (not really, but read on)

Actual:

  • Segment does not get removed, but circle is indeed broken into two arcs

Same for an ellipse.

I can see that by selecting two points on a closed circular shape it’s nigh impossible to tell which segment the user actually wants to remove :)

The documentation doesn’t mention this corner case. For clarity, a note detailing this effect a bit should be added to the docs.

On a slightly related note, I do not see why the feature couldn’t work on Polyline objects as well (with the same corner case restriction if it’s a closed polyline).

Very useful feature btw, thanks for it.

 1039 QCAD (main)Bug ReportLow Text dialog memory leak Closed
100%
Task Description

Qcad under linux appears to be suffering a slow memory leak to the point it chomps 1.8GB on my machine and the swap grinds to a halt.

Can you advise what system info you need and I will get.

Stop QCAD, give it 20-30sec to clean up and its back to normal.

Looking over the past 30 min in System Monitor, Startup 0.1GB, 30 mins in, 1.2GB, close all tabs open (3 off) and back to 1.1GB.

 1038 QCAD (main)Bug ReportLow Text rendering: font tags not always interpreted correc ...Closed
100%
Task Description

Original topic: “ugly text strings in a draught, after Visio 2003 AutoCAD file conversion”

Hello!

I have a Visio2003 mnemonic, and I tried to convert it to AutoCad file format (interchange and other), but this conversion makes ugly any text string in a result draught, like this (look at the attached QCAD.png):

 "\fArial|b0|i1|;Насос шнековый (для откачки осадка)"
 "\fArial|b0|i1|;сборный" 
 ... and so on.

I tried to open result draught in a DraftSight - it works with strings fine, there are no ugly string on the screen.
If I try to open CAD files created by DraftSight in QCAD 3.4.6 - I have an ugly text strings too.

A process of manual corrections of this ugly text strings in QCAD is very very laborious, I think, you need to make a some new instruments to automatic conversion strins like this “\fArial|b0|i1|;сборный...” to strting “сборный...” by checking some postions in your new instruments and clicking “Apply” button.

Thanks.

 1037 QCAD/CAMBug ReportLow great number of text editing operation leads to QCAD cr ...Closed
100%
Task Description

Hello!

When I’m trying to make a great number of text editing operation the QCAD 3.4.6 application crashes with following errors:

lman@lman:~/opt/qcad-3.4.6-linux-x86_32$ ./qcad
Debug: RCamScriptsPlugin: init
Debug: RDwgPlugin::init: trial
Debug: RDxfPlugin::init
Debug: RHelpPlugin::init
Debug: RProScriptsPlugin::init
Debug: TIMER: 56 ms - “loading add-ons”
Debug: TIMER: 672 ms - “initializing add-ons”
Debug: checking for updates...
Warning: QSslSocket: cannot resolve SSLv2_client_method
Warning: QSslSocket: cannot resolve SSLv2_server_method
Debug: no updates available
Debug: checking for updates...
Debug: no updates available
Warning: RHatchData::getPainterPaths: cannot load hatch pattern: “”
Warning: RHatchData::getPainterPaths: cannot load hatch pattern: “”
Debug: “RDwgServices::printErrorStackTrace: Handle already exists”
Warning: RDwgExporter::exportEntity: Exception occurred. Entity NOT saved:
RTextEntity(RTextBasedEntity(REntity(RObject(id: 3012, handle: “0xf33”, document: “0xa20e830”, address: “0xa9e1010”, undone: 0), type: 14, layerId: 21, blockId: 22, parentId: -1, childIds: QSet() , lineweight: -1 , linetypeId: 0 , color: RColor(ByLayer) , drawOrder: 2907 , selectionStatus: false , boundingBoxes: (RBox(RVector(1048.41, 175.238, 0) - RVector(1063.59, 177.762, 0)) ) ) , alignmentPoint: RVector(1056, 176.5, 0), position: RVector(0, 0, 0), text: “\fCalibri|b0|i1|;150”, textHeight: 1.85207, textWidth: 7, drawingDirection: 1))
Debug: “RDwgServices::printErrorStackTrace: Handle already exists”
Warning: RDwgExporter::exportEntity: Exception occurred. Entity NOT saved:
RTextEntity(RTextBasedEntity(REntity(RObject(id: 3012, handle: “0xf33”, document: “0xa20e830”, address: “0xa9e1010”, undone: 0), type: 14, layerId: 21, blockId: 22, parentId: -1, childIds: QSet() , lineweight: -1 , linetypeId: 0 , color: RColor(ByLayer) , drawOrder: 2907 , selectionStatus: false , boundingBoxes: (RBox(RVector(1048.41, 175.238, 0) - RVector(1063.59, 177.762, 0)) ) ) , alignmentPoint: RVector(1056, 176.5, 0), position: RVector(0, 0, 0), text: “\fCalibri|b0|i1|;150”, textHeight: 1.85207, textWidth: 7, drawingDirection: 1))
Debug: “RDwgServices::printErrorStackTrace: Handle already exists”
Warning: RDwgExporter::exportEntity: Exception occurred. Entity NOT saved:
RTextEntity(RTextBasedEntity(REntity(RObject(id: 3012, handle: “0xf33”, document: “0xa20e830”, address: “0xa9e1010”, undone: 0), type: 14, layerId: 21, blockId: 22, parentId: -1, childIds: QSet() , lineweight: -1 , linetypeId: 0 , color: RColor(ByLayer) , drawOrder: 2907 , selectionStatus: false , boundingBoxes: (RBox(RVector(1048.41, 175.238, 0) - RVector(1063.59, 177.762, 0)) ) ) , alignmentPoint: RVector(1056, 176.5, 0), position: RVector(0, 0, 0), text: “\fCalibri|b0|i1|;150”, textHeight: 1.85207, textWidth: 7, drawingDirection: 1))
Debug: “RDwgServices::printErrorStackTrace: Handle already exists”
Warning: RDwgExporter::exportEntity: Exception occurred. Entity NOT saved:
RTextEntity(RTextBasedEntity(REntity(RObject(id: 3012, handle: “0xf33”, document: “0xa20e830”, address: “0xa9e1010”, undone: 0), type: 14, layerId: 21, blockId: 22, parentId: -1, childIds: QSet() , lineweight: -1 , linetypeId: 0 , color: RColor(ByLayer) , drawOrder: 2907 , selectionStatus: false , boundingBoxes: (RBox(RVector(1048.41, 175.238, 0) - RVector(1063.59, 177.762, 0)) ) ) , alignmentPoint: RVector(1056, 176.5, 0), position: RVector(0, 0, 0), text: “\fCalibri|b0|i1|;150”, textHeight: 1.85207, textWidth: 7, drawingDirection: 1))
Debug: “RDwgServices::printErrorStackTrace: Handle already exists”
Warning: RDwgExporter::exportEntity: Exception occurred. Entity NOT saved:
RTextEntity(RTextBasedEntity(REntity(RObject(id: 3012, handle: “0xf33”, document: “0xa20e830”, address: “0xa9e1010”, undone: 0), type: 14, layerId: 21, blockId: 22, parentId: -1, childIds: QSet() , lineweight: -1 , linetypeId: 0 , color: RColor(ByLayer) , drawOrder: 2907 , selectionStatus: false , boundingBoxes: (RBox(RVector(1048.41, 175.238, 0) - RVector(1063.59, 177.762, 0)) ) ) , alignmentPoint: RVector(1056, 176.5, 0), position: RVector(0, 0, 0), text: “\fCalibri|b0|i1|;150”, textHeight: 1.85207, textWidth: 7, drawingDirection: 1))
Debug: “RDwgServices::printErrorStackTrace: Handle already exists”
Warning: RDwgExporter::exportEntity: Exception occurred. Entity NOT saved:
RTextEntity(RTextBasedEntity(REntity(RObject(id: 3012, handle: “0xf33”, document: “0xa20e830”, address: “0xa9e1010”, undone: 0), type: 14, layerId: 21, blockId: 22, parentId: -1, childIds: QSet() , lineweight: -1 , linetypeId: 0 , color: RColor(ByLayer) , drawOrder: 2907 , selectionStatus: false , boundingBoxes: (RBox(RVector(1048.41, 175.238, 0) - RVector(1063.59, 177.762, 0)) ) ) , alignmentPoint: RVector(1056, 176.5, 0), position: RVector(0, 0, 0), text: “\fCalibri|b0|i1|;150”, textHeight: 1.85207, textWidth: 7, drawingDirection: 1))
Could not allocate register file: 12
./qcad: line 18: 7332 Segmentation fault LD_LIBRARY_PATH=”$DIR” “$binary” -style plastique “$@”

OS: Linux Debian 7.0.1 (”uname -a” return: SMP Debian 3.13.7-1 (2014-03-25) i686 GNU/Linux)
Thanks.

1036QCAD (main)Feature RequestLowLayer list - drop down menu optionAssigned
0%
Task Description

In the same way as the Pen tool has a drop down menu, would it be possible to have an option to configure the layer list in the same way. I am trying to create a bit more drawing space and it would be good if I could dock the layer list in the top of my window and only take up a single row space!

 1035 QCAD (main)Bug ReportLow Isometric Projection (Cylindrical) - draws to wrong lay ...Closed
100%
Task Description

When using the ‘Cylindrical’ isometric tool, the projection does not draw to pre-selected layer in the layer list. This is only achieved when changing the layer in the property editor first. Have not tested this with other projection tools.

1034QCAD (main)Feature RequestLowSupplementary note added to Application preferences dia...Assigned
0%
Task Description

I think it would be useful to add a note to the Application preferences dialog window, to explain to the user the difference between ‘Application and Drawing’ preferences and how it effects drawings in QCAD.

Please see topic for more details and feedback:

http://www.qcad.org/rsforum/viewtopic.php?f=32&t=2831&p=9724#p9724

 1033 QCAD (main)Bug ReportLow QCAD Community Edition: cannot edit properties of block ...Closed
100%
Task Description

See forum thread at:
http://www.qcad.org/rsforum/viewtopic.php?f=33&t=2833

 1032 QCAD (main)Bug ReportMedium Copy / paste: pasting copied block references results i ...Closed
100%
1 Task Description

- Copy two block references of block “circle” which contains one circle
- Paste into new, empty drawing
- Pasted block “circle” contains two circles

 1031 QCAD (main)Feature RequestLow Remember last layer active, when restating existing dra ...Closed
100%
2 Task Description

An option to remember the last active layer in an exisisting drawing when reopening.

Please see topic:

http://www.qcad.org/rsforum/viewtopic.php?f=31&p=9687&sid=7204a32dd33d5aa65ad5f979915cb7b2#p9687

 1030 QCAD (main)Bug ReportLow Block->Create Library Item Issue Closed
100%
Task Description

I create a number of library items to create parts assemblies..

I will build a component in a drawing that has other components in its own layer then isolate the component and only select it. I then use Block→Create Library Item to create a component, set it origin and save the item.. When I open the item, there apears to be a set of duplicate lines generated. I have to select all the components and do a detect duplicates then delete them before doing anything else with the drawing.. I found this issue by trying to create a cutaway view then adding a crosshatch. The crosshatch tool does not like lines on top of lines..

 1029 QCAD (main)Performance IssueLow Selecting many entities: poor performance Closed
100%
Task Description

Selecting a great number of entities (>10000) can be slow, likely due to updating the property editor.

 1028 QCAD (main)Bug ReportLow Draw > Line > Rectangle with Size: options toolbar layo ...Closed
100%
Task Description

... just cosmetic!

Rectangle with size: The option box “Reference Point” is a bit to small to show the whole text of the chosen option.

English / German = same behavior.

1027QCAD (main)Feature RequestLowRectangle with a 3 point determination ...Assigned
0%
1 Task Description

Many times I’m faced with the situation that I have to use a rectangle related to other entities. Dimensions/Angle = unknown.

We have in QCAD a rectangle tool with a two point diagonal determination but this is limited to two points and it will only work in a horizontal and vertical direction.

My feature request is based on the idea to draw a rectangle with 3 points - regardless the angle.

1. First point: start

2. second point: determination of the first side (width?) and it will also provide the angle for the rectangle

3. third point: determination second side (height?)

I’m asking for an additional new tool? No - just as an option to the existing rectangle tool ...

1026QCAD (main)Feature RequestLowSelection Filter also present in the Menu "Selection"Assigned
0%
Task Description

It would be nice to have the Selection Filter also present in the Menu / Selection List

 1025 TranslationBug ReportLow Selection Filter / German translation Closed
100%
Task Description

The German translation isn’t shown in all parts of the Selection Filter.

 1024 QCAD (main)Feature RequestLow Manage the layers of Inkscape Closed
100%
Task Description

When we want to import a document SVG of Inkscape, copies are not managed.
All the elements contained in the various copies find themselves in one and the same copy 0 in QCad-Prof.

It is necessary to convert the file SVG in DXF before being able to use him(it) in QCad.
It is impractical.

1023QCAD (main)Feature RequestLowArrange points on a plan according to variation of dist...Assigned
0%
2 Task Description

Arrange points on a plan according to an arithmetical, geometrical, logarithmic, customizable variation of distances

 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 ...

 1021 dwg2pdfFeature RequestLow dwg2pdf: switch to set block to export Closed
100%
1 Task Description

Add a command line switch to dwg2pdf to export a given block instead of “*Model_Space”.

 1020 QCAD (main)Bug ReportLow Line2PEx, Option-bar for angles disregard the Decimal P ...Closed
100%
Task Description

My QCAD setting for “Decimal Points” is “dot” instead of “comma”.
(Application Preferences, General, Coordinate Format, Decimal Point: Dot ‘.’(Default))

The new Line2PEx tool will only accept a comma - if I use a dot it will be automatically replaced by a comma.
The displayed angle in the drawing will use a dot.
No red Text font warning for using an invalid value.

I used a screen-shot with an additional coordinate option to make it a bit clearer:

 1019 QCAD (main)Bug ReportLow QCAD crashes, when I try to save any formats different  ...Closed
100%
Task Description

Hello!
I tried to save attached file (file in R15 dxf format) to any other formats and I got a crash of QCAD 3.4.5 with the next log:

Debug:    RCamScriptsPlugin: init 
Debug:    RDwgPlugin::init: trial 
Debug:    RDxfPlugin::init 
Debug:    RHelpPlugin::init 
Debug:    RProScriptsPlugin::init 
Debug:    TIMER:  56 ms -  "loading add-ons" 
Debug:    TIMER:  617 ms -  "initializing add-ons" 
Debug:    checking for updates... 
Warning:  QSslSocket: cannot resolve SSLv2_client_method
Warning:  QSslSocket: cannot resolve SSLv2_server_method
Debug:    no updates available 
Debug:    checking for updates... 
Debug:    no updates available 
Warning:  KGlobal::locale(): Warning your global KLocale is being recreated with a valid main component instead of a fake component, this usually means you tried to call i18n related functions before your main component was created. You should not do that since it most likely will not work
Warning:  Object::connect: No such signal org::freedesktop::UPower::DeviceAdded(QDBusObjectPath)
Warning:  Object::connect: No such signal org::freedesktop::UPower::DeviceRemoved(QDBusObjectPath)
Debug:    "/org/freedesktop/UDisks2/drives/ST31000340AS_5QJ0WQPV" : property "Drive" does not exist 
Debug:    "/org/freedesktop/UDisks2/drives/ST1000DM003_1CH162_Z1D36FHL" : property "Drive" does not exist 
Debug:    "/org/freedesktop/UDisks2/drives/ST1000DM003_1CH162_Z1D36FHL" : property "DeviceNumber" does not exist 
Debug:    "/org/freedesktop/UDisks2/drives/ST1000DM003_1CH162_Z1D36FHL" : property "Device" does not exist 
Debug:    "/org/freedesktop/UDisks2/block_devices/dm_2d0" : property "Name" does not exist 
Debug:    "/" : property "DeviceNumber" does not exist 
Debug:    "/" : property "Device" does not exist 
Debug:    "/" : property "MediaCompatibility" does not exist 
Debug:    "/" : property "MediaRemovable" does not exist 
Debug:    "/" : property "Removable" does not exist 
Debug:    "/" : property "ConnectionBus" does not exist 
Debug:    code page:  30 
Debug:    RDxfExporter::exportFile 
Debug:    RDxfExporter::exportFile: header 
Debug:    RDxfExporter::exportFile: variables 
Debug:    RDxfExporter::exportFile: tables 
Debug:    RDxfExporter::exportFile: vport 
Debug:    RDxfExporter::exportFile: linetypes 
Debug:    RDxfExporter::exportFile: linetypes table 
Debug:    RDxfExporter::exportFile: linetypes loop 
Debug:    RDxfExporter::exportFile: linetypes table end 
Debug:    RDxfExporter::exportFile: layers 
Debug:    RS_FilterDxf::writeLayer:  "0" 
Debug:    writing styles... 
Debug:    writing views... 
Debug:    writing ucs... 
Debug:    writing appid... 
Debug:    writing dim styles... 
Debug:    writing block records... 
Debug:    writing block record:  "_____ _3 _________ _______" 
Debug:    writing block record:  "*Model_Space" 
Debug:    writing end of section TABLES... 
Debug:    writing blocks... 
Debug:    writing block:  "_____ _3 _________ _______" 
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 24, document: "0xa59ee48", address: "0xd779d30", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  0 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(8, 5, 0) - RVector(8, 90, 0)) )  ) , startPoint: RVector(8, 5, 0), endPoint: RVector(8, 90, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 25, document: "0xa59ee48", address: "0xa2965f0", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  1 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(8, 90, 0) - RVector(20, 90, 0)) )  ) , startPoint: RVector(8, 90, 0), endPoint: RVector(20, 90, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 26, document: "0xa59ee48", address: "0xd5ef410", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  2 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(8, 65, 0) - RVector(20, 65, 0)) )  ) , startPoint: RVector(8, 65, 0), endPoint: RVector(20, 65, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 27, document: "0xa59ee48", address: "0xd7784f0", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  3 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(8, 30, 0) - RVector(20, 30, 0)) )  ) , startPoint: RVector(8, 30, 0), endPoint: RVector(20, 30, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 28, document: "0xa59ee48", address: "0xd2c3250", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  4 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(13, 5, 0) - RVector(13, 90, 0)) )  ) , startPoint: RVector(13, 90, 0), endPoint: RVector(13, 5, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 29, document: "0xa59ee48", address: "0xa575df8", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  5 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(405, 13, 0) - RVector(415, 13, 0)) )  ) , startPoint: RVector(405, 13, 0), endPoint: RVector(415, 13, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 30, document: "0xa59ee48", address: "0xd37d0e8", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  6 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(405, 5, 0) - RVector(405, 20, 0)) )  ) , startPoint: RVector(405, 20, 0), endPoint: RVector(405, 5, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 31, document: "0xa59ee48", address: "0xc83cbb0", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  7 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(285, 5, 0) - RVector(285, 20, 0)) )  ) , startPoint: RVector(285, 5, 0), endPoint: RVector(285, 20, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 32, document: "0xa59ee48", address: "0xa6f90f8", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  8 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(270, 5, 0) - RVector(270, 20, 0)) )  ) , startPoint: RVector(270, 5, 0), endPoint: RVector(270, 20, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 33, document: "0xa59ee48", address: "0xd67d868", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  9 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(260, 5, 0) - RVector(260, 20, 0)) )  ) , startPoint: RVector(260, 5, 0), endPoint: RVector(260, 20, 0))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 34, document: "0xa59ee48", address: "0xd984548", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  10 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(9.25, 7.88608, 0) - RVector(11.7998, 27.1139, 0)) )  ) , alignmentPoint: RVector(11.75, 17.5, 0), position: RVector(11.75, 9.36111, 0), text: "Инв. № подл.", textHeight: 2.5, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 35, document: "0xa59ee48", address: "0xd9b1250", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  11 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(250, 5, 0) - RVector(250, 20, 0)) )  ) , startPoint: RVector(250, 5, 0), endPoint: RVector(250, 20, 0))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 36, document: "0xa59ee48", address: "0xa97f870", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  12 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(9.25, 37.5675, 0) - RVector(11.7998, 57.4325, 0)) )  ) , alignmentPoint: RVector(11.75, 47.5, 0), position: RVector(11.75, 39.0556, 0), text: "Подп. и дата", textHeight: 2.5, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 37, document: "0xa59ee48", address: "0xd9b1250", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  13 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(240, 5, 0) - RVector(240, 20, 0)) )  ) , startPoint: RVector(240, 5, 0), endPoint: RVector(240, 20, 0))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 38, document: "0xa59ee48", address: "0xd37a508", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  14 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(9.25, 67.82, 0) - RVector(11.7998, 87.18, 0)) )  ) , alignmentPoint: RVector(11.75, 77.5, 0), position: RVector(11.75, 69.2222, 0), text: "Взам. инв. №", textHeight: 2.5, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RPolylineEntity(REntity(RObject(id: 39, document: "0xa59ee48", address: "0x9a13980", undone: 0), type: 7, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  15 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(20, 292, 0) - RVector(415, 292, 0)) ,  RBox(RVector(20, 5, 0) - RVector(20, 292, 0)) ,  RBox(RVector(20, 5, 0) - RVector(415, 5, 0)) ,  RBox(RVector(415, 5, 0) - RVector(415, 292, 0)) )  ) RPolyline(RShape(address: "0x9a139d0"), vertices: 4, closed: true, 
RLine(RShape(address: "0x9a03c58"), startPoint: RVector(415, 292, 0), endPoint: RVector(20, 292, 0)), 
RLine(RShape(address: "0xd774b80"), startPoint: RVector(20, 292, 0), endPoint: RVector(20, 5, 0)), 
RLine(RShape(address: "0xd987298"), startPoint: RVector(20, 5, 0), endPoint: RVector(415, 5, 0)), 
RLine(RShape(address: "0xa2d31b0"), startPoint: RVector(415, 5, 0), endPoint: RVector(415, 292, 0)), ))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 40, document: "0xa59ee48", address: "0xd9b1250", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  16 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(8, 5, 0) - RVector(20, 5, 0)) )  ) , startPoint: RVector(8, 5, 0), endPoint: RVector(20, 5, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 41, document: "0xa59ee48", address: "0xd9b1250", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  25 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  17 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(230, 15, 0) - RVector(295, 15, 0)) )  ) , startPoint: RVector(295, 15, 0), endPoint: RVector(230, 15, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 42, document: "0xa59ee48", address: "0xd9b1250", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  18 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(230, 10, 0) - RVector(295, 10, 0)) )  ) , startPoint: RVector(295, 10, 0), endPoint: RVector(230, 10, 0))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 43, document: "0xa59ee48", address: "0xa97f870", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  19 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(231, 5.85618, 0) - RVector(236, 8.1, 0)) )  ) , alignmentPoint: RVector(231, 7, 0), position: RVector(228.472, 7, 0), text: "Изм.", textHeight: 2.2, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RPolylineEntity(REntity(RObject(id: 44, document: "0xa59ee48", address: "0xa98c480", undone: 0), type: 7, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  20 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(0, 0, 0) - RVector(420, 0, 0)) ,  RBox(RVector(420, 0, 0) - RVector(420, 297, 0)) ,  RBox(RVector(0, 297, 0) - RVector(420, 297, 0)) ,  RBox(RVector(0, 0, 0) - RVector(0, 297, 0)) )  ) RPolyline(RShape(address: "0xa98c4d0"), vertices: 4, closed: true, 
RLine(RShape(address: "0xd774b80"), startPoint: RVector(0, 0, 0), endPoint: RVector(420, 0, 0)), 
RLine(RShape(address: "0x9a03c58"), startPoint: RVector(420, 0, 0), endPoint: RVector(420, 297, 0)), 
RLine(RShape(address: "0x9be2218"), startPoint: RVector(420, 297, 0), endPoint: RVector(0, 297, 0)), 
RLine(RShape(address: "0x9c0c3e0"), startPoint: RVector(0, 297, 0), endPoint: RVector(0, 0, 0)), ))
Debug:    RDxfExporter::writeEntity:  RPolylineEntity(REntity(RObject(id: 45, document: "0xa59ee48", address: "0x9a0ea88", undone: 0), type: 7, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  21 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(230, 5, 0) - RVector(230, 20, 0)) ,  RBox(RVector(230, 20, 0) - RVector(415, 20, 0)) )  ) RPolyline(RShape(address: "0x9a0ead8"), vertices: 3, closed: false, 
RLine(RShape(address: "0xd774b80"), startPoint: RVector(230, 5, 0), endPoint: RVector(230, 20, 0)), 
RLine(RShape(address: "0x9a03c58"), startPoint: RVector(230, 20, 0), endPoint: RVector(415, 20, 0)), ))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 46, document: "0xa59ee48", address: "0xd37a508", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  22 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(241, 5.24, 0) - RVector(249.534, 8.1, 0)) )  ) , alignmentPoint: RVector(241, 7, 0), position: RVector(236.639, 7, 0), text: "Кол.уч.", textHeight: 2.2, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 47, document: "0xa59ee48", address: "0xa97f870", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  23 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(251.956, 5.9, 0) - RVector(258.044, 8.1, 0)) )  ) , alignmentPoint: RVector(255, 7, 0), position: RVector(251.944, 7, 0), text: "Лист", textHeight: 2.2, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 48, document: "0xa59ee48", address: "0xd9b1250", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  24 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(295, 5, 0) - RVector(295, 20, 0)) )  ) , startPoint: RVector(295, 5, 0), endPoint: RVector(295, 20, 0))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 49, document: "0xa59ee48", address: "0xd37a508", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  25 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(260.677, 5.85618, 0) - RVector(269.323, 8.1, 0)) )  ) , alignmentPoint: RVector(265, 7, 0), position: RVector(260.861, 7, 0), text: "№ док.", textHeight: 2.2, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 50, document: "0xa59ee48", address: "0xa97f870", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  26 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(272.414, 5.90284, 0) - RVector(282.565, 8.14667, 0)) )  ) , alignmentPoint: RVector(277.49, 7.04667, 0), position: RVector(272.323, 7.04667, 0), text: "Подпись", textHeight: 2.2, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 51, document: "0xa59ee48", address: "0xd37a508", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  27 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(286.669, 5.68, 0) - RVector(293.331, 8.1, 0)) )  ) , alignmentPoint: RVector(290, 7, 0), position: RVector(286.556, 7, 0), text: "Дата", textHeight: 2.2, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 52, document: "0xa59ee48", address: "0xa97f870", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  28 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(406.541, 14, 0) - RVector(413.459, 16.5, 0)) )  ) , alignmentPoint: RVector(410, 14, 0), position: RVector(406.944, 14, 0), text: "Лист", textHeight: 2.5, textWidth: 0, drawingDirection: 1))
Debug:    writing block:  "*Model_Space" 
Debug:    writing section ENTITIES... 
Debug:    RDxfExporter::writeEntity:  RBlockReferenceEntity(REntity(RObject(id: 54, document: "0xa59ee48", address: "0xa788310", undone: 0), type: 4, layerId: 21, blockId: 22, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  30 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(-182, -97.5, 0) - RVector(238, 199.5, 0)) )  ) , position: RVector(-182, -97.5, 0), scale: RVector(1, 1, 1), rotation: 0, referencedBlockId: 23)
Debug:    RDxfExporter::writeEntity:  RBlockReferenceEntity(REntity(RObject(id: 55, document: "0xa59ee48", address: "0xd97ffb8", undone: 0), type: 4, layerId: 21, blockId: 22, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  31 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(340, -88.5, 0) - RVector(760, 208.5, 0)) )  ) , position: RVector(340, -88.5, 0), scale: RVector(1, 1, 1), rotation: 0, referencedBlockId: 23)
Debug:    writing end of section ENTITIES... 
Debug:    writing section OBJECTS... 
Debug:    writing end of section OBJECTS... 
Debug:    writing EOF... 
Debug:    RDxfExporter::exportFile: close 
Debug:    RDxfExporter::exportFile: delete 
Debug:    RDxfExporter::exportFile: OK 
Debug:    RDxfExporter::exportFile 
Debug:    RDxfExporter::exportFile: header 
Debug:    RDxfExporter::exportFile: variables 
Debug:    RDxfExporter::exportFile: tables 
Debug:    RDxfExporter::exportFile: vport 
Debug:    RDxfExporter::exportFile: linetypes 
Debug:    RDxfExporter::exportFile: linetypes table 
Debug:    RDxfExporter::exportFile: linetypes loop 
Debug:    RDxfExporter::exportFile: linetypes table end 
Debug:    RDxfExporter::exportFile: layers 
Debug:    RS_FilterDxf::writeLayer:  "0" 
Debug:    writing styles... 
Debug:    writing views... 
Debug:    writing ucs... 
Debug:    writing appid... 
Debug:    writing dim styles... 
Debug:    writing block records... 
Debug:    writing block record:  "_____ _3 _________ _______" 
Debug:    writing block record:  "*Model_Space" 
Debug:    writing end of section TABLES... 
Debug:    writing blocks... 
Debug:    writing block:  "_____ _3 _________ _______" 
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 24, document: "0xa59ee48", address: "0xd30fef0", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  0 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(8, 5, 0) - RVector(8, 90, 0)) )  ) , startPoint: RVector(8, 5, 0), endPoint: RVector(8, 90, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 25, document: "0xa59ee48", address: "0x9a131d0", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  1 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(8, 90, 0) - RVector(20, 90, 0)) )  ) , startPoint: RVector(8, 90, 0), endPoint: RVector(20, 90, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 26, document: "0xa59ee48", address: "0x9a131d0", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  2 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(8, 65, 0) - RVector(20, 65, 0)) )  ) , startPoint: RVector(8, 65, 0), endPoint: RVector(20, 65, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 27, document: "0xa59ee48", address: "0x9a131d0", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  3 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(8, 30, 0) - RVector(20, 30, 0)) )  ) , startPoint: RVector(8, 30, 0), endPoint: RVector(20, 30, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 28, document: "0xa59ee48", address: "0x9a131d0", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  4 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(13, 5, 0) - RVector(13, 90, 0)) )  ) , startPoint: RVector(13, 90, 0), endPoint: RVector(13, 5, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 29, document: "0xa59ee48", address: "0x9a131d0", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  5 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(405, 13, 0) - RVector(415, 13, 0)) )  ) , startPoint: RVector(405, 13, 0), endPoint: RVector(415, 13, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 30, document: "0xa59ee48", address: "0x9a131d0", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  6 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(405, 5, 0) - RVector(405, 20, 0)) )  ) , startPoint: RVector(405, 20, 0), endPoint: RVector(405, 5, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 31, document: "0xa59ee48", address: "0x9a131d0", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  7 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(285, 5, 0) - RVector(285, 20, 0)) )  ) , startPoint: RVector(285, 5, 0), endPoint: RVector(285, 20, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 32, document: "0xa59ee48", address: "0x9a131d0", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  8 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(270, 5, 0) - RVector(270, 20, 0)) )  ) , startPoint: RVector(270, 5, 0), endPoint: RVector(270, 20, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 33, document: "0xa59ee48", address: "0x9a131d0", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  9 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(260, 5, 0) - RVector(260, 20, 0)) )  ) , startPoint: RVector(260, 5, 0), endPoint: RVector(260, 20, 0))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 34, document: "0xa59ee48", address: "0xd37a508", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  10 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(9.25, 7.88608, 0) - RVector(11.7998, 27.1139, 0)) )  ) , alignmentPoint: RVector(11.75, 17.5, 0), position: RVector(11.75, 9.36111, 0), text: "Инв. № подл.", textHeight: 2.5, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 35, document: "0xa59ee48", address: "0x9c0dd40", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  11 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(250, 5, 0) - RVector(250, 20, 0)) )  ) , startPoint: RVector(250, 5, 0), endPoint: RVector(250, 20, 0))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 36, document: "0xa59ee48", address: "0xd37a508", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  12 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(9.25, 37.5675, 0) - RVector(11.7998, 57.4325, 0)) )  ) , alignmentPoint: RVector(11.75, 47.5, 0), position: RVector(11.75, 39.0556, 0), text: "Подп. и дата", textHeight: 2.5, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 37, document: "0xa59ee48", address: "0x9c0dd40", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  13 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(240, 5, 0) - RVector(240, 20, 0)) )  ) , startPoint: RVector(240, 5, 0), endPoint: RVector(240, 20, 0))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 38, document: "0xa59ee48", address: "0xd37a508", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  14 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(9.25, 67.82, 0) - RVector(11.7998, 87.18, 0)) )  ) , alignmentPoint: RVector(11.75, 77.5, 0), position: RVector(11.75, 69.2222, 0), text: "Взам. инв. №", textHeight: 2.5, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RPolylineEntity(REntity(RObject(id: 39, document: "0xa59ee48", address: "0xdbdade8", undone: 0), type: 7, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  15 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(20, 292, 0) - RVector(415, 292, 0)) ,  RBox(RVector(20, 5, 0) - RVector(20, 292, 0)) ,  RBox(RVector(20, 5, 0) - RVector(415, 5, 0)) ,  RBox(RVector(415, 5, 0) - RVector(415, 292, 0)) )  ) RPolyline(RShape(address: "0xdbdae38"), vertices: 4, closed: true, 
RLine(RShape(address: "0x9a0fe10"), startPoint: RVector(415, 292, 0), endPoint: RVector(20, 292, 0)), 
RLine(RShape(address: "0xd497720"), startPoint: RVector(20, 292, 0), endPoint: RVector(20, 5, 0)), 
RLine(RShape(address: "0x99fd1a8"), startPoint: RVector(20, 5, 0), endPoint: RVector(415, 5, 0)), 
RLine(RShape(address: "0x9a10628"), startPoint: RVector(415, 5, 0), endPoint: RVector(415, 292, 0)), ))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 40, document: "0xa59ee48", address: "0x9c0dd40", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  16 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(8, 5, 0) - RVector(20, 5, 0)) )  ) , startPoint: RVector(8, 5, 0), endPoint: RVector(20, 5, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 41, document: "0xa59ee48", address: "0xd3703e0", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  25 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  17 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(230, 15, 0) - RVector(295, 15, 0)) )  ) , startPoint: RVector(295, 15, 0), endPoint: RVector(230, 15, 0))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 42, document: "0xa59ee48", address: "0x9c0dd40", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  18 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(230, 10, 0) - RVector(295, 10, 0)) )  ) , startPoint: RVector(295, 10, 0), endPoint: RVector(230, 10, 0))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 43, document: "0xa59ee48", address: "0xd37a508", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  19 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(231, 5.85618, 0) - RVector(236, 8.1, 0)) )  ) , alignmentPoint: RVector(231, 7, 0), position: RVector(228.472, 7, 0), text: "Изм.", textHeight: 2.2, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RPolylineEntity(REntity(RObject(id: 44, document: "0xa59ee48", address: "0xdbdade8", undone: 0), type: 7, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  20 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(0, 0, 0) - RVector(420, 0, 0)) ,  RBox(RVector(420, 0, 0) - RVector(420, 297, 0)) ,  RBox(RVector(0, 297, 0) - RVector(420, 297, 0)) ,  RBox(RVector(0, 0, 0) - RVector(0, 297, 0)) )  ) RPolyline(RShape(address: "0xdbdae38"), vertices: 4, closed: true, 
RLine(RShape(address: "0x9a044c0"), startPoint: RVector(0, 0, 0), endPoint: RVector(420, 0, 0)), 
RLine(RShape(address: "0x99fd1a8"), startPoint: RVector(420, 0, 0), endPoint: RVector(420, 297, 0)), 
RLine(RShape(address: "0x9a0fe10"), startPoint: RVector(420, 297, 0), endPoint: RVector(0, 297, 0)), 
RLine(RShape(address: "0x9a10628"), startPoint: RVector(0, 297, 0), endPoint: RVector(0, 0, 0)), ))
Debug:    RDxfExporter::writeEntity:  RPolylineEntity(REntity(RObject(id: 45, document: "0xa59ee48", address: "0xdbdade8", undone: 0), type: 7, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  21 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(230, 5, 0) - RVector(230, 20, 0)) ,  RBox(RVector(230, 20, 0) - RVector(415, 20, 0)) )  ) RPolyline(RShape(address: "0xdbdae38"), vertices: 3, closed: false, 
RLine(RShape(address: "0x9a11a90"), startPoint: RVector(230, 5, 0), endPoint: RVector(230, 20, 0)), 
RLine(RShape(address: "0xa6ffd58"), startPoint: RVector(230, 20, 0), endPoint: RVector(415, 20, 0)), ))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 46, document: "0xa59ee48", address: "0xd37a508", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  22 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(241, 5.24, 0) - RVector(249.534, 8.1, 0)) )  ) , alignmentPoint: RVector(241, 7, 0), position: RVector(236.639, 7, 0), text: "Кол.уч.", textHeight: 2.2, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 47, document: "0xa59ee48", address: "0xd37a508", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  23 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(251.956, 5.9, 0) - RVector(258.044, 8.1, 0)) )  ) , alignmentPoint: RVector(255, 7, 0), position: RVector(251.944, 7, 0), text: "Лист", textHeight: 2.2, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RLineEntity(REntity(RObject(id: 48, document: "0xa59ee48", address: "0x9c0dd40", undone: 0), type: 6, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  60 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  24 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(295, 5, 0) - RVector(295, 20, 0)) )  ) , startPoint: RVector(295, 5, 0), endPoint: RVector(295, 20, 0))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 49, document: "0xa59ee48", address: "0xd37a508", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  25 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(260.677, 5.85618, 0) - RVector(269.323, 8.1, 0)) )  ) , alignmentPoint: RVector(265, 7, 0), position: RVector(260.861, 7, 0), text: "№ док.", textHeight: 2.2, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 50, document: "0xa59ee48", address: "0xd37a508", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  26 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(272.414, 5.90284, 0) - RVector(282.565, 8.14667, 0)) )  ) , alignmentPoint: RVector(277.49, 7.04667, 0), position: RVector(272.323, 7.04667, 0), text: "Подпись", textHeight: 2.2, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 51, document: "0xa59ee48", address: "0xd37a508", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  27 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(286.669, 5.68, 0) - RVector(293.331, 8.1, 0)) )  ) , alignmentPoint: RVector(290, 7, 0), position: RVector(286.556, 7, 0), text: "Дата", textHeight: 2.2, textWidth: 0, drawingDirection: 1))
Debug:    RDxfExporter::writeEntity:  RTextEntity(RTextBasedEntity(REntity(RObject(id: 52, document: "0xa59ee48", address: "0xd37a508", undone: 0), type: 14, layerId: 21, blockId: 23, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  28 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(406.541, 14, 0) - RVector(413.459, 16.5, 0)) )  ) , alignmentPoint: RVector(410, 14, 0), position: RVector(406.944, 14, 0), text: "Лист", textHeight: 2.5, textWidth: 0, drawingDirection: 1))
Debug:    writing block:  "*Model_Space" 
Debug:    writing section ENTITIES... 
Debug:    RDxfExporter::writeEntity:  RBlockReferenceEntity(REntity(RObject(id: 54, document: "0xa59ee48", address: "0x9a02c98", undone: 0), type: 4, layerId: 21, blockId: 22, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  30 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(-182, -97.5, 0) - RVector(238, 199.5, 0)) )  ) , position: RVector(-182, -97.5, 0), scale: RVector(1, 1, 1), rotation: 0, referencedBlockId: 23)
Debug:    RDxfExporter::writeEntity:  RBlockReferenceEntity(REntity(RObject(id: 55, document: "0xa59ee48", address: "0x9a02c98", undone: 0), type: 4, layerId: 21, blockId: 22, parentId: -1, childIds: QSet() , lineweight:  -1 , linetypeId:  0 , color:  RColor(ByLayer) , drawOrder:  31 , selectionStatus:  false , boundingBoxes:  (RBox(RVector(340, -88.5, 0) - RVector(760, 208.5, 0)) )  ) , position: RVector(340, -88.5, 0), scale: RVector(1, 1, 1), rotation: 0, referencedBlockId: 23)
Debug:    writing end of section ENTITIES... 
Debug:    writing section OBJECTS... 
Debug:    writing end of section OBJECTS... 
Debug:    writing EOF... 
Debug:    RDxfExporter::exportFile: close 
Debug:    RDxfExporter::exportFile: delete 
Debug:    RDxfExporter::exportFile: OK 
./qcad-3.4.5-linux-x86_32/qcad: line 18: 12988 segmantation fault                   LD_LIBRARY_PATH="$DIR" "$binary" -style plastique "$@"
 1018 QCAD (main)Bug ReportMedium Crash when using Draw > Polyline > Trim Segments Closed
100%
Task Description

Draw > Polyline > Trim Segments crashes if QCAD is compiled using gcc 4.2.1 which is the case for the Mac OS X package.

 1017 QCAD (main)Bug ReportMedium crash when saving file with block attributes Closed
100%
Task Description

Hey,

QCAD crashes when saving a drawing that has a block attribute added.
This happens both with a block and the exploded version of the block.

Please find attached the system info, as well as an example drawing.
In this drawing, there are three boxes. The lower 2 boxes are intended to contain text attributes.

Output from the command line:
metastable@metastable:~/opt/qcad-3.4.5-pro-linux-x86_32$ ./qcad
Debug: RDxfPlugin::init
Debug: RHelpPlugin::init
Debug: RProScriptsPlugin::init
Debug: TIMER: 90 ms - “loading add-ons”
Debug: TIMER: 781 ms - “initializing add-ons”
Debug: checking for updates...
Warning: QSslSocket: cannot resolve SSLv2_client_method
Warning: QSslSocket: cannot resolve SSLv2_server_method
Debug: no updates available
Debug: checking for updates...
Debug: no updates available
Debug: RPluginBase: postInit: “DWG”
Debug: RPluginBase: postInit: “Pro Tools”
Debug: code page: 30
Debug: autosave skipped [08:54:14]: no modifications
./qcad: line 18: 3850 Segmentation fault (core dumped) LD_LIBRARY_PATH=”$DIR” “$binary” -style plastique “$@”

Kind regards,

Stijn

 1016 QCAD (main)Bug ReportLow Community Edition: dxflib based import: import of block ...Closed
100%
Task Description

If the order of blocks in a DXF R12 file is:
- block 1
- block 2
And ‘block 1’ references ‘block 2’, the import fails since ‘block 2’ is not defined at the time ‘block 1’ is imported.

 1015 QCAD (main)Feature RequestLow To add Point Style options Closed
100%
1 Task Description

I use points in my drawing s often for referencing and construction purposes, I would like to request that in the application settings some options could be added for point styles.
For example:
Style - cross with circle or other styles useful for temporary construction referencing.
The option to set the size either relative to the screen or indeed in absolute units.

 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

 1013 QCAD/CAMBug ReportLow Option icon goes huge Closed
100%
Task Description

I moved all my tools bars to the side of the screen (vertical). only options was at the top. next restart it went HUGE.
it would only revert after putting another toolbar back (horizontal) and restarting qcad.

 1012 QCAD (main)Feature RequestLow Make threshold from which arcs are approximated as line ...Closed
100%
Task Description

Tried to draw a guitar and when drawing top arch (R=10600 mm), I noticed that when arc length is less than 5% (in ths case less than 530 mm) of arcs radius arc appears totally straight both in screen and print.
Data is stored right, details are right, reference points are right, snap on entity goes right, but the line appears totally straight.

I have iMac mid 2011 with Mavericks and latest Qcad.

 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.

Showing tasks 1501 - 1550 of 2560 Page 31 of 52<<First - 29 - 30 - 31 - 32 - 33 - Last >>

Available keyboard shortcuts

Tasklist

Task Details

Task Editing