|
1305 | dxflib | Performance Issue | Low | Bottleneck in DL_Dxf::toReal caused by std::locale | Closed | |
|
Task Description
Loading any larger dxf file takes very long because of this line: istr.imbue(std::locale(”C”));
The call to std::locale is very slow. File-loading can be speed up by approximately factor 5 times on my system when replacing it. I just removed that line and instead added the following in DL_Dxf::in so it is changed only once per file:
std::locale oldLocale = std::locale::global(std::locale(”C”)); // use dot in numbers while (readDxfGroups(fp, creationInterface)) {} std::locale::global(oldLocale);
|
|
1315 | QCAD (main) | Performance Issue | Low | Snap > Auto Snap: slow when snapping to complex polylin ... | Closed | |
|
Task Description
See also: http://www.qcad.org/rsforum/viewtopic.php?f=33&t=3838
|
|
1497 | QCAD (main) | Performance Issue | Low | Autosnap: hangs with very complex splines | Closed | |
|
Task Description
Splines with hundreds of control points or fit points can cause hangs when using auto snap near them.
|
|
1606 | QCAD (main) | Performance Issue | Low | Selecting 'Draw Order' halts system temporary | Closed | |
|
Task Description
Merely clicking on ‘Draw Order’, and usualy unintended, halts the system for several seconds up to several tens of seconds.
Intel(R) Core(TM) i7-2600K CPU @ 3.40Ghz 4,00 GB RAM installed 3,49 GB usable 32-bit Operating System Windows 7 Professional SP1
|
|
1610 | QCAD/CAM | Performance Issue | Low | Switching from one drawing to another slow | Closed | |
|
Task Description
When switching from one drawing to another, the 3D view is updated which can be slow, especially for drawings with many text entities.
See also: https://www.qcad.org/rsforum/viewtopic.php?f=89&t=4945
|
|
1662 | QCAD (main) | Performance Issue | Low | Select > Select Contour: slow for complex drawings | Closed | |
|
Task Description
Hi!
when working with files containing many not connected elements (non-poly-line elements) a double click can cause a coffee-break easily. The search for connected entities easily takes over 5 minutes on an up to date machine ([email protected]) with files that are pretty standard in size (2 or 3 MB file size ascii dxf). Adding an interruption-method would be suitable (for example by pressing escape).
attached a file with a polyline of 13000 entities and a second file with just everything duplicated. When exploding the polyline and double clicking an element it takes quite a while until all elements are selected. (this is not an extreme example, I had sometimes 10 minutes of waiting with slightly bigger files, accidently double clicking something).
also an improved algorithm for the search would help to speed up the selection. (e.g. divide the area in smaller parts, do the search there, or an option to search only in the visible view port of the document)
Martin
|
|
1801 | QCAD (main) | Performance Issue | Low | low perfomance in paper space and viewports | Assigned | |
|
Task Description
Improving the performance of the exceptional use of the processors when switching from the model to the paper space (testing with the attached file) the functionalities of the commands for the viewports are too low in the paper space.
|
|
1970 | QCAD/CAM | Performance Issue | Medium | Drill Toolpath Workaround | Closed | |
|
Task Description
Hallo Andrew,
Fiddling with the drill-toolpath error, a solution seems to be to add the drill location as a ‘single point’ in the ‘source’ sublayer. I am using this as a Bug Work Around.
|
|
1984 | QCAD (main) | Performance Issue | Low | Block > Create Block from Selection: Slow for large num ... | Closed | |
|
Task Description
See also: https://www.qcad.org/rsforum/viewtopic.php?f=33&t=6672
|
|
2021 | QCAD (main) | Performance Issue | Very Low | Cannot work with big dwg files | Assigned | |
|
Task Description
Openning a big file or doing any action in it, takes minutes to load. Even dragging the scrollbar slightly left or right, takes mintues to redraw the canvas again, which makes QCAD un-usable for professional use. Is there a way to make QCAD usable, after loading completed: - Like suppressing edit until user says so, - or taking snapshots of rendered canvases to another file and use it, as windows uses thumb.db ( for negative latency :P )
PS: I wish I could help a bit, but my hand are tied. I am just a java freak, I am opt to any idea of porting it to java, if she is still alive.
Tuğalsan Karabacak EEE, MSc Mobile Comp & App, IWE
|
|
137 | QCAD (main) | Refactoring | Low | SVG Export precision | Closed | |
|
Task Description
In files exported with the (even PG) exporter I sometimes see values like these: 334.99999999999994 or 570.0000000000001 and very often 12 digits of precision.
To safe on file size, I suggest, that QCAD rounds values on SVG export to eg. three places. When viewed in an ordinary web browser, that will result in a precision of 1 inch / 96dpi / 1000 = 0.00026mm, not? Ends should still meet.
|
|
138 | QCAD (main) | Refactoring | Low | SVG Export entity properties "By Layer" and "By Block" | Closed | |
|
Task Description
If I understand correctly, SVG export uses svg groups to keep QCAD block entities. This in itself is very useful. There is no way to correctly keep layer information, as QCAD blocks can contain elements on different layers, while SVG only knows about groups. That is a deficiency of SVG.
To save on file size, there was some potential to get rid of ever repeating same attributes on entities, eg: style=”stroke:#000000;stroke-width:0.25;stroke-dasharray:2.16,1.08”
To optimize “By Block” is easy: just set the attribute on the SVG group, and omit on below entities styled “By Block”.
To optimize “By Layer” is a little more involved, but might be solved by using css: - Create a class by the name of the Layer - add the class attribute to elements styled “By Layer”
Then only individually styled entities would get a style attribute, and filesize of SVG could be halved in most cases.
This just an idea :) Having written this, I now realize, that QCAD can style weight, pattern, color each extra, so the optimazition could only be applied to entities, where everything is “By Layer” or “By Block”. But that should be the case most of the time.
|
|
146 | QCAD (main) | Refactoring | Low | cloning entities: optional ID cloning | Closed | |
|
Task Description
add parameter to REntity::clone to allow cloning without cloning object ID.
|
|
610 | QCAD (main) | Refactoring | Low | replace QMdiArea with QTabBar and QWidgetStack | Closed | |
|
Task Description
QMdiChild widgets in an QMdiArea receive repaint and mouse events even if they are not active which slows down the user interface when having multiple MDI children open.
Long term, QMdiArea might have to be replaced with something else.
|
|
1056 | QCAD (main) | Refactoring | Very Low | Dead and wrong code in RSPlatform.cpp | Closed | |
|
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?
|
|
2104 | ECMAScript | Refactoring | Low | Dublicate functions in scripts/simple.js and scripts/li ... | Closed | |
|
Task Description
Both of these files (scripts/simple.js and scripts/library.js) contain a function named sleep() that duplicate each other. There is probably a need to delete one of them.
Permalinks to this definitions on Github:
|
|
26 | QCAD (main) | Release | Low | Release Tasks | Closed | |
|
Task Description
Disable
developer menu
tests scripts
Adjust Version
Application
“About” dialog (automatic)
reference manual: support/doc/manual/about.txt / about_de.txt
scripts/splashscreen.png
scripts/Tools/LibraryBrowser/splashscreen.png
src/core/RVersion.h
library browser DB file name in LibraryBrowser.js, LibraryBrowser.getDbFile()
Deployment
Don't forget
Check List
run automatic tests
designer plugins qwebkit (libqwebview.so)
text with CAD font
hatches
insert image
user interface translations
help (Qt Assistant client)
library browser
help - contents
help - check for updates
templates
initial launch (without ini file)
printing
-
-
loading / saving files
Help - Show Readme (can file readme.txt be found?)
Qt libraries not in debug mode, QCAD binary does not link against debug Qt libraries
command line tools
Ports
Mac OS X Snow Leopard & Lion (10.6 & 10.7)
Mac OS X Leopard x86 (10.5)
Mac OS X Leopard ppc (10.5)
Linux 32bit
Windows 32bit
Plus maybe later:
-
Linux 64bit
Windows 64bit
|
|
1328 | QCAD (main) | Release | Low | Windows 64bit install dir | Closed | |
|
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?
|
|
1954 | QCAD/CAM | Release | Low | Revised PWM Post Processor | Assigned | |
|
Task Description
Hallo Andrew,
I have revised the PWM Post Processor to Revision D.
|
|
2108 | ECMAScript | Release | Low | FlexPainter update Beta 0.42e | Closed | |
|
Task Description
https://qcad.org/rsforum/viewtopic.php?f=30&t=6547&p=29307#p29307
FlexPainter is updated.
Should not load while PROTOOLS are absent.
Regards, CVH
|
|
1368 | QCAD (main) | Suggestion | Low | Context Menu - suggestions | Assigned | |
1 |
Task Description
I love using the context menu, speeding up my workflow indeed.
I would like to suggest that we have the added option to show only icons if desired and also that maybe an option to save and show commonly used tools!
Maybe the context menu could be configurable to show two columns, one for the normal last used tools and the othjer one for the user saved tools?
What do you think?
|
|
1469 | QCAD (main) | Suggestion | Low | Cartouche automatique | Assigned | |
1 |
Task Description
Would not it be possible to create a kind of template for printing? We draw our room without cartridge. The cartridge will automatically appear when printed. The scaling could be automatic so that it goes in the A4 and therefore also will post the scale automatically. The name of the play could be the file name, date last saved after it the rest of the information that would be to add somehow (material index, designer, ...).
Original suggestion:
Bonjour,
Ne serait il pas possible de créer une sorte de template lors de l’impression ? On dessine notre pièce sans cartouche. Le cartouche s’affiche automatiquement lors de son impression. La mise à l’échelle pourrais être automatique pour que ca rentre dans le A4 et donc l’échelle s’afficherai aussi en automatique. Le nom de la pièce pourrais être le nom du fichier, la date du dernier enregistrement après c’est le reste des infos qui serait à ajouter je ne sais comment (matière, indice, dessinateur, ...).
|
|
1526 | QCAD (main) | Suggestion | Low | Exporting block attributes to CSV | Assigned | |
1 |
Task Description
Two useful commands make it necessary to
1-”delete all the history of the command lines without terminating QCad” ; and
2-”export attributes to the CSV file as exported to the Blocks List”
|
|
1607 | QCAD (main) | Suggestion | Very Low | Indent 'Spline Segments:' in explode preferences | Closed | |
1 |
Task Description
FS#1604 was issued because of non-intuitive hierarchy of the preferences for the Explode function. The task comment recieved explains the funcionallity in details not found elsewhere.
Indentation of the phrase ‘Spline Segments:’ suggest hierarchy. Graying out the drop down box for the number of spline segments establish hierarchy.
|
|
1789 | QCAD (main) | Suggestion | Low | Application Preferences / General / Performance :0 | Assigned | |
1 |
Task Description
Hi Andrew,
we know that you need to have always software performance in your mind to decide which features / tools can / should be implemented and on which way.
I really appreciate your effort to find the best middle way between software features and performance but I think also it’s a tough call to appraise worldwide the overall customer equipment to make the software workable to the best for everybody. That isn’t possible without compromise.
Maybe it would make sense to think about a new dialog in the “Application Preferences” to let the user decide what kind of feature are absolutely needed regarding to his/her work-task / equipment. I don’t mean that you need to cover every single thing but the main “performance jeopardy’s” should be covered with an on/off switch.
Yes I know - that isn’t done in 5 minutes but I think that can make your life easier in the long run and will cover even more customer.
Just my two cents. ;)
|
|
2126 | QCAD (main) | Suggestion | Very Low | PE casts on individual hatch segments | Closed | |
1 |
Task Description
QCADpro 3.25.2.1 / win7pro 32 bit / 4GB / 1e generation i7 2.6Ghz / HDD GeForce GT 520
The method PE casts the clipboard on individual hatch segments. Hatches should be considered as a single complex entity not allowing certain actions.
Discovered while: https://qcad.org/rsforum/viewtopic.php?f=33&p=30008#p30008
Not that it matters: In doing so the scaling is off too.
Regards, CVH
|
|
2138 | QCAD (main) | Suggestion | Very Low | Block zoomstate supersedes Model_Space after Undo of BC | Assigned | |
1 |
Task Description
Summary: Block zoomstate supersedes Model_Space after Undo of BC
QCAD Professional Version: 3.25.2.1 (3.25.2.1) Internet: QCAD.org Build Date: Oct 15 2020 Revision: 2895712 Qt Version: 5.13.2 Architecture: i386 Compiler: Unknown «< (Win installer 32 bit)
With the file provided: ZW to see the top green ‘revision cloud’ up close QQ Box select around the cloud »> 2 entities in selection BC, select origin somewhere inside the selection, accept proposed naming »> ‘Block 1’ is created from the selection TN BD, select the newly created Block Reference »> Auto zoom of ‘Block 1’ (Intended behavior) OO »> Returns to Model_Space with the zoomstate of the removed Block »> Halfway down the drawing »> The former zoomstate of the Model_Space is lost
Intended behavior is that the zoomstate of Model_Space and Blocks don’t mix See: https://www.qcad.org/rsforum/viewtopic.php?f=31&t=7797&p=30371#p30378
This proves they do, even if the block doesn’t exists anymore.
Regards, CVH
PS: 3th trial to enter a suggestion ...
|
|
2140 | QCAD (main) | Suggestion | Low | Changing navigation mode for mouse wheel doesn't change... | Assigned | |
1 |
Task Description
Looks like error, but may be that’s feature request.
CAD software uses typical navigation behavior as: Wheel = Zoom; Ctrl+Wheel = Scroll up/down; Shift+Wheel = Scroll left/right.
Any other software like browsers, office software (openoffice writer, ms excel and so on), 2d paint software like GIMP (Photoshop and so on) uses other behavior: Wheel = Scroll up/down; Ctrl+Wheel = Zoom; Shift+Wheel = Scroll left/right.
Users, that intensively use CAD and other software simultaneously prefer to make same behavior in their applications switching CAD scroll to plain mouse wheel.
QCAD’s “Application Preferences”: “Graphics View: Navigation”: “Mouse wheel/ two finger swipe”: “Scroll” allow user to assign scroll up/down to wheel mouse instead of Zoom. But there is mistake Ctrl+Wheel didn’t change to Zoom. Ctrl+Wheel continues to scroll up/down, as the wheel. Wheel = Scroll up/down; Ctrl+Wheel = Scroll up/down; Shift+Wheel = Scroll left/right. No zoom!
Draw manipulation at this mode like a hell: you need to use wheel in conjunction with Ctrl/Shift to point draw in desired position, than move your hand to +(-) for make desired zoom.
|
|
2146 | QCAD (main) | Suggestion | Very Low | Keep 'Invisible' objects invisible while saving | Assigned | |
1 |
Task Description
QCAD Professional Win installer 32bit Version: 3.25.2.4 (3.25.2.4) Internet: QCAD.org Build Date: Nov 18 2020 Revision: 40f4475 Qt Version: 5.13.2 Architecture: i386 Compiler: Unknown
Related topic: https://qcad.org/rsforum/viewtopic.php?f=33&t=7882 Explanation found in REntity.cpp Listed as a Public Member Functions inherited from RObject
Regards, CVH
|
|
2147 | QCAD (main) | Suggestion | Very Low | Allow breaking up self-intersecting a 2e time (at endpo... | Assigned | |
1 |
Task Description
QCAD Professional win installer 32bit Version: 3.25.2.4 (3.25.2.4) Internet: QCAD.org Build Date: Nov 18 2020 Revision: 40f4475 Qt Version:5.13.2 Architecture: i386 Compiler: Unknown
Continued from https://qcad.org/bugtracker/index.php?do=details&task_id=1757 Splitting the old report up ... Same file. In the left example one can cut (DI) once. Cutting the second segment results in NO cut.
Regards CVH
|
|
2148 | QCAD (main) | Suggestion | Very Low | Allow undo after breaking up self-intersecting with D2 ... | Assigned | |
1 |
Task Description
QCAD Professional win installer 32bit Version: 3.25.2.4 (3.25.2.4) Internet: QCAD.org Build Date: Nov 18 2020 Revision: 40f4475 Qt Version:5.13.2 Architecture: i386 Compiler: Unknown
Continued from https://qcad.org/bugtracker/index.php?do=details&task_id=1757 Splitting the old report up ... Same file. In the left example one can break out segment (D2): - removing one of the loops with the ‘remove’ option. - leaving both without the ‘remove’ option. Bug? Without the ‘remove’ option it can’t be undone.
Regards CVH
|
|
2149 | QCAD (main) | Suggestion | Very Low | Allow undo after auto trim self-intersecting with AX in... | Assigned | |
1 |
Task Description
QCAD Professional win installer 32bit Version: 3.25.2.4 (3.25.2.4) Internet: QCAD.org Build Date: Nov 18 2020 Revision: 40f4475 Qt Version:5.13.2 Architecture: i386 Compiler: Unknown
Continued from https://qcad.org/bugtracker/index.php?do=details&task_id=1757 Splitting the old report up ... Same file. In the left example one can auto trim (AX): - The lower loop. - The top loop. Bug? The action on the top loop can’t be undone.
Regards CVH
|
|
2156 | QCAD (main) | Suggestion | Low | Add an option to XP preferences to include circles or n ... | Closed | |
1 |
Task Description
Andrew, unrelated to any OS or version.
Circles do explode to polylines with two arc segments. Discussed earlier and very correct because a full circle bulge would be a mathematical limit situation.
When there is no option to ‘Undo’ anymore or when the file was saved & loaded there is no easy way back.
One of the reasons why I isolate circle entities if I might going to use XP as in the file here: https://qcad.org/bugtracker/index.php?do=details&task_id=2155 Even knowing it, I still make more mistakes as I would like.
It would be nice to be able to exclude circle entities from the GUI explosion action XP. Can be simply implemented in the top of Explode.explodeSelection with an extra preference in AppPrefs, default =true.
On the other hand, the explosions of circles used internally in various methods should remain.
Regards, CVH
|
|
2162 | QCAD (main) | Suggestion | Low | Update the parameter with simplify of RPolylineData & R... | Assigned | |
1 |
Task Description
Unrelated to OS, nor version
Reported Jun 23, 2020 in: https://qcad.org/rsforum/viewtopic.php?f=30&t=7372
Status Dec 24, 2020: https://qcad.org/rsforum/viewtopic.php?f=30&t=7372#p30955 Documentation is updated. The Classes still refer to an ‘angleTolerance’.
Regards, CVH
|
|
2177 | Documentation | Suggestion | Low | Update class_r_polyline.html | Assigned | |
1 |
Task Description
Include RPolyline.getLeftRightOutline() method in class_r_polyline.html
In use since 11 Sept 2020
CVH
|
|
2181 | QCAD (main) | Suggestion | Very Low | Apply more distinguishable Enabled and Disabled state i... | Assigned | |
1 |
Task Description
QCAD Professional Win7 WinInstaller 32bit Version: 3.25.2.7 (3.25.2.7) Internet: QCAD.org Build Date: Dec 16 2020 Revision: e06f230 Qt Version: 5.13.2 Architecture: i386 Compiler: Unknown
Related forum Topic: https://qcad.org/rsforum/viewtopic.php?t=8015
CVH
|
|
1323 | QCAD (main) | Suggestion | Low | Improve command line support in QCAD | Assigned | |
|
Task Description
Hi,
As a typical command line draftsman (still using acad10 for dos, since microsoft doesn’t supoort Win NT anymore), I noticed a severe lack on command line acces in QCAD.
For example I find the icon and pixel selecting methods within qcad very confusing and rude.
With the normal cad Select command I can select exactly what en how I want it.
I intend not to be rude, but I find my drawing screen littered all over with all kind of very specialist menu’s, tools and options. Sorry, I just want to make a drawing at the natural intuitive way, as with a pencil. So I use command line Commands, such as Move, Copy, Change, Select, a.s.o. For a ‘Command scripting’ user (-batching is a different tool!-), it seems to me logical these basic commands should be accessable.
|
|
1324 | QCAD/CAM | Suggestion | Very Low | Confusing Copy / Move option | Closed | |
|
Task Description
Hi,
Using the Copy and Move command the [ ] Use current layer and attributes’ is confusing.
Perhaps [ ] change copy /moved set to current layers and attributes. is more suitable.
|
|
1375 | QCAD (main) | Suggestion | Very Low | Install in hidden folder | Closed | |
|
Task Description
After each update, I add a dot before the ~user/opt folder (and in the program launcher) created by QCAD to unclutter my file manager’s appearance. Would be easy, I think, to make the installer put the program directly in ~user/.opt, and nobody would miss that folder while browsing through daily used files.
And what about installing the program as root, so all users of a computer could use it without personal installs, and only personal setting files created by users would be kept in ~user/.opt/qcam.
Jean-Claude
|
|
1490 | QCAD (main) | Suggestion | Low | Text Edit Control <ESC> maps to <cancel>. If anything i ... | Closed | |
|
Task Description
For all the Linux VI editor geeks, can you disable the <ESC> function in the text edit mode. <ESC> maps to <cancel>. If anything it should map to <ok>. Which creates no harm as it can be later undone. I have accidentally lost edits countless times due to an unbreakable habit.
|
|
1499 | QCAD (main) | Suggestion | Low | Add script generator for Qt 5.6.2 | Closed | |
|
Task Description
As it says on the tin - please add script generator for Qt 5.6.2.
|
|
1516 | QCAD (main) | Suggestion | Low | QT style on Linux | Closed | |
|
Task Description
The startup script still forces a QT-style; Getting bored of that one, qcad runs fine with the system default style - probably that was a qt4 thing, that can be removed, so it blends better with the DE?
18c18 /opt/qcad/qcad < LD_LIBRARY_PATH=”$DIR” “$binary” -style plastique “[email protected]” —
|
|
1527 | QCAD (main) | Suggestion | Low | "Zeichnungseinheit konvertieren" translation missing .. ... | Closed | |
|
Task Description
... for the Option bar.
|
|
1534 | QCAD (main) | Suggestion | Low | Headless Styling | Closed | |
|
Task Description
Since the launcher batch no longer requests “-style plastique” QT wants to apply the native style of the desktop environment. This fails on a headless system (or where the current user has no graphical shell to connect to) with the message “Gtk-WARNING **: cannot open display: “. Fortunately, QT provides a workaround in addtion to the new “platform=offscreen” flag.
In the tools that set -no-gui, beforehand export these variables into the environment
export QT_STYLE_OVERRIDE=""
export QT_QPA_PLATFORM=offscreen
export DISPLAY=""
PS: QT-offscreen will not find fonts; unfortunately the workaround only allows for a single directory to search them (I need helvetica):
export QT_QPA_FONTDIR="/usr/local/share/fonts/type1"
Maybe that should get reported upstream, so that like LD_LIBRARY_PATH several directories could be specified.
|
|
1678 | QCAD (main) | Suggestion | Low | Property Editor dialog | Assigned | |
|
Task Description
The line for “General properties”, “Layer” the line is too narrow, so you do not see the layer name when the Property Editor is pinned to the side. (see Forum - Suggestions and Feedback): https://www.qcad.org/rsforum/viewtopic.php?f=31&t=5239
|
|
1724 | QCAD Community Edition | Suggestion | Low | "OVERKILL" command | Closed | |
|
Task Description
Is it possible to create “OVERKILL” command like in AUTOCAD
|
|
1728 | QCAD (main) | Suggestion | Low | Script bindings for Qt 5.9.4 | Closed | |
|
Task Description
Please add script bindings for Qt 5.9.4, thank you.
|
|
1740 | QCAD (main) | Suggestion | Low | Make unprintable layers also hidden in print preview | Assigned | |
|
Task Description
Make unprintable layers also hidden in print preview
|
|
1754 | QCAD (main) | Suggestion | Low | When Selecting multiple blocks that contain the same at... | Assigned | |
|
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.
|
|
1759 | QCAD (main) | Suggestion | Very Low | Modify // .... selection of entities on locked layer al ... | Closed | |
|
Task Description
Without any selection. Entities on a locked layer can be selected after choosing:
Asumed wrong - Modify DI - Modify B2 - Modify D3 - Modify MT
Questionable - Modify RM - Modify CH - Modify RN
Less severe - Modify OF - Modify OH - Modify SS
Regards
|