|
1873 | QCAD (main) | Bug Report | Low | dark theme / invisible shortcuts in tool tooltips | Closed | |
|
Task Description
Hello
I noticed that when the dark scheme has been chosen the shortcut for any toolbar tool, shown inside tool tooltip has color similar to the tooltip background which makes it invisible.
QCAD version 3.22.0.0 (3.22.0) revision 2ba5a26 Checked on Windos, Suse, Archlinux.
Best regards Jacek
|
|
2118 | QCAD (main) | Bug Report | Low | Dark mode: disabled menu text distorted | Closed | |
|
Task Description
See also: https://www.qcad.org/rsforum/viewtopic.php?f=33&t=7596
Windows / Linux
|
|
928 | QCAD (main) | Task | Low | CXF font editing | Closed | |
1 |
Task Description
Port CXF font editor to QCAD 3. - Load CXF fonts (load glyphs into blocks) - Save back to CXF format
|
|
575 | QCAD (main) | Bug Report | Low | Cut out segment: fails with ellipse segments that are t ... | Closed | |
|
Task Description
See also: http://www.qcad.org/rsforum/viewtopic.php?f=32&t=1945
|
|
436 | QCAD (main) | Bug Report | Low | Cut / copy with reference and paste do not change comma ... | Closed | |
|
Task Description
Cut / copy with reference and paste do not change command line prompt
|
|
647 | QCAD (main) | Feature Request | Low | Customize line type | Closed | |
5 |
Task Description
I would like to get a submenu in properties to define own line types, i.e. one dash and three points or line + block.
Edit: Add support for custom line types defined in DXF / DWG files.
|
|
425 | QCAD (main) | Feature Request | Low | Custom properties | Closed | |
1 |
Task Description
Assigning custom properties to entities and possibly layers and other objects.
|
|
1468 | QCAD (main) | Bug Report | Low | Custom patterns are not selectable from qcad | Closed | |
|
Task Description
Hi,
I added a new custom pattern into patterns/metric folder However, even after restarting QCAD, new pattern is not showing in hatch dialog.
|
|
1079 | QCAD (main) | Feature Request | Low | Custom line weights in 0.001mm steps | Closed | |
|
Task Description
The user can choose from 24 different line weights at the moment. Unfortunately, 0.1mm is not among them.
Please add the possibility (add a textbox) to set any line weight from 0 to max in 0.001mm steps.
|
|
1603 | QCAD (main) | Feature Request | Low | Curved leader Lines | Closed | |
|
Task Description
Hi Andrew,
I would like to request an additional option in the dimension tool set to have a curved leader line, could be just the spline tool with an arrow on the end?
Regards
Clive
|
|
371 | QCAD (main) | Bug Report | Low | Ctrl-P not working in print preview | Closed | |
|
Task Description
Ctrl-P not working in print preview
Linux only.
|
|
1512 | QCAD/CAM | Bug Report | Low | CTR command is not working | Closed | |
|
Task Description
1) Tool Circle WC 2) CTR circletangent2radius
This doesn’t work between two circles ! I can make a circle that touches a line and a circle. But I can NOT make a third circle with a given radius that touches two other circles.
All the other commands in this menu are working properly, can someone help me out ?
|
|
1874 | QCAD (main) | Bug Report | Low | Crossing selection not working | Closed | |
|
Task Description
When doing the selection shown in attached image, only horizontal line gets selected.
This only happen in some drawings. When starting a new drawing all selects as expected but when increasing complexity some lines can’t be selected using crossing selection.
If you copy/paste to new file it’s still not working, nor in other computer.
|
|
2070 | QCAD (main) | Feature Request | Low | cropping image | Assigned | |
1 |
Task Description
It may be useful to insert the “image cropping” function both in top / bottom - right / left mode, and with polyline
|
|
477 | QCAD (main) | Feature Request | Low | crop objects at page margins | Closed | |
|
Task Description
It would be nice if QCad would print only objects inside page margins (i.e. to print a detail of a large drawing with margins). At the moment objects are visible up to page borders, and exporting to PDF with re-printing to a larger page contains even more objects.
|
|
1843 | QCAD/CAM | Bug Report | Low | Creating ToolPath Stalls | Assigned | |
|
Task Description
Hi Andrew,
Still working with and on CAM HPGL for the HP7580 pen plotter.
I have added a penplotter test drawing, that might be used for testing en callibrating plotter and pens. You may add it to the Examples-directory.
QCAD has a lot of trouble creating toolpaths and exports. Much too often it shuts itself down, or gets stalled. Why? I am not sure.
|
|
54 | QCAD (main) | Bug Report | Low | Creating polyline from segments hangs | Closed | |
|
Task Description
load “scripts/Draw/Polyline/PolylineFromSegments/Tests/lines.dxf”
choose Polyline → Create from segments
the conversion isn’t done
the tool can be cancel with right click, but QCAD stays in strange stage using 25% CPU permanently
quit leads to segmentation fault
Thread [1] 20083 (Suspended : Signal : SIGSEGV:Segmentation fault)
0xb693148a
QScriptEngineAgentPrivate::atStatement() at 0xb6bc397b
0xb6a42232
0xb6a8e39a
0xa9b50ac0
0xffffffff
0x5
0xfffffffe
0xdc
0xfffffffe
<...more frames...>
|
|
805 | QCAD (main) | Feature Request | Low | Create tool radius compensation / tool path generation | Assigned | |
|
Task Description
This is how I would implement this:
This would be a modification tool. Parts are selected, a toolpath is generated, and a dialog pops up to allow putting the tool path into an existing layer, a new layer, or replace all drawings in an existing layer.
This is how the toolpath is generated:
We iterate through all elements and explode everything but text into line segments. Then we connect the line segments into chains wherever the line endpoints are less than some tolerance away from each other. The chains can be very chaotic, but at least we have separate entities for now.
For every chain, we need to find the largest complete loop. A good drawing would only contain non-overlapping loops, but we can’t expect that. Everything that is not on this loop can not be defined as a part or as a hole, so we will merely create a tool path segment that is equivalent to the line segment. Every segment that *IS* on a loop is either an outside edge (part outline), or an inside edge (hole outline), (or overlapping, in which case it is neither, and we have an operator problem).
In a perfect world, we need to find exactly which shape is inside which other shape, and then create alternating tool offsets from the outmost loop (part edge) to the second outmost (hole), to the next (part) etc. .
In a simplified world, we can used the bounding box of the loop instead. This works OK for rectangular shapes, but a circle next to an “L” shape could be seen as inside the L’s bounding box, hence inside the L, wrongly accused of being a hole, not a part.
Now all that is left to do is to create a new loop, offset by the tool radius. Oh, and since we have the connections from line segment to line segment in the correct order already, we can use the opportunity to order all cutting loops from inner to outer, or from small to large, and order non-loop edges by travel distance.
The new drawing in the new layer can now be exported without further hassle to create a nice laser cut file.
PS: of course, a user could create multiple layers for marking, cutting, enraging, etc. . Additional Layer attributes for cutting speed and laser power (and a few more) would be needed.
|
|
114 | QCAD (main) | Task | Low | Create QCAD Cheat Sheet | Closed | |
|
Task Description
Cheat Sheet which lists all QCAD tools with icon, key code and explanation
Possibly two versions for Windows / Linux and Mac
|
|
717 | QCAD (main) | Bug Report | Low | Create Library Item from selection doesn't takes the ch ... | Closed | |
|
Task Description
Tool “Create Library Item from selection” doesn’t takes the chosen Reference point ....
It seems that QCAD takes something around the absolute Reference by 2 times ..... ???
|
|
994 | QCAD (main) | Feature Request | Low | Create block from selection: overwrite existing block | Closed | |
1 |
Task Description
Create a new block from a selection Enter the name of an existing block Overwrite warning Overwrite block
|
|
131 | QCAD (main) | Task | Low | Create block | Closed | |
|
Task Description
Create block from selection
|
|
74 | QCAD (main) | Bug Report | Low | Crash while generating example drawings | Closed | |
|
Task Description
openSUSE 11.4, 32bit
Most likely occurred while getting printer information. Possibly connected to switching desktops while script was running.
Linux: 2011-05-11 16.08:09 RGraphicsViewQt::decorateBackground()
Thread [1] 10040 (Suspended : Signal : SIGPIPE:Broken pipe)
__kernel_vsyscall() at 0xffffe424
send() at 0xb51825b8
0xa95298b2
httpFlushWrite() at 0xa9529c21
0xa952bcb8
cupsSendRequest() at 0xa9542470
cupsDoIORequest() at 0xa9542bc7
cupsDoRequest() at 0xa9542f0b
0xa9521d7f
cupsGetDests2() at 0xa95235d5
cupsGetDests() at 0xa95239a3
0xb5ad5153
0xb5a12133
0xb5a28344
0xb5a2b78c
QPrinter::init() at 0xb5a2d4ee
QPrinter::QPrinter() at 0xb5a2f01f
QtScriptShell_QPrinter::QtScriptShell_QPrinter() at 0xb0489e29
qtscript_QPrinter_static_call() at 0xb00463ba
0xb6bd7f88
0xb6ac7c97
0xb6a91114
0xa9582390
0xb6a423e3
0xb6af06e0
0xb6ac201e
0xb6be0cd3
0xb6be11a9
QMetaObject::metacall() at 0xb5478c83
QMetaObject::activate() at 0xb5489134
RGraphicsViewQt::decorateBackground() at moc_RGraphicsViewQt.cpp:121 0x8cfbcc6
RGraphicsViewQt::paintDocument() at RGraphicsViewQt.cpp:510 0x8cee2e5
RGraphicsViewQt::paintEvent() at RGraphicsViewQt.cpp:216 0x8cec909
QWidget::event() at 0xb58da67d
RGraphicsViewQt::event() at RGraphicsViewQt.cpp:796 0x8cef99e
QApplicationPrivate::notify_helper() at 0xb5871d7c
QApplication::notify() at 0xb5875b64
0xb693e301
QInternal::activateCallbacks() at 0xb5356dd3
QCoreApplication::notifyInternal() at 0xb5472123
QWidgetPrivate::drawWidget() at 0xb58d400d
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d4b42
QWidgetPrivate::drawWidget() at 0xb58d3d1f
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d4b42
QWidgetPrivate::drawWidget() at 0xb58d3d1f
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d4b42
QWidgetPrivate::drawWidget() at 0xb58d3d1f
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d4b42
QWidgetPrivate::drawWidget() at 0xb58d3d1f
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d4b42
QWidgetPrivate::drawWidget() at 0xb58d3d1f
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d4b42
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d49fc
QWidgetPrivate::drawWidget() at 0xb58d3d1f
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d4b42
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d49fc
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d49fc
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d49fc
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d49fc
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d49fc
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d49fc
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d49fc
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d49fc
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d49fc
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d49fc
QWidgetPrivate::paintSiblingsRecursive() at 0xb58d49fc
QWidgetPrivate::drawWidget() at 0xb58d3d1f
0xb5acfffe
QWidgetPrivate::syncBackingStore() at 0xb58ca7e2
QWidget::event() at 0xb58daf74
QMainWindow::event() at 0xb5d2c6d5
RMainWindowQt::event() at RMainWindowQt.cpp:532 0x8cf54c3
QApplicationPrivate::notify_helper() at 0xb5871d7c
QApplication::notify() at 0xb5875b64
QCoreApplication::notifyInternal() at 0xb547215b
QCoreApplicationPrivate::sendPostedEvents() at 0xb5473457
QCoreApplication::sendPostedEvents() at 0xb547363d
0xb54a2344
g_main_context_dispatch() at 0xb4af3509
0xb4af3d10
g_main_context_iteration() at 0xb4af3fce
QEventDispatcherGlib::processEvents() at 0xb54a2741
0xb5932a55
QCoreApplication::processEvents() at 0xb54738e9
0xb6930965
QScriptEngineAgentPrivate::atStatement() at 0xb6bc297b
0xb6a41232
0xb6a8d39a
0xa8c5fbee
0xb6a423e3
0xb6af06e0
0xb6ac201e
QScriptValue::call() at 0xb6bd2e67
REcmaShellActionAdapter::beginEvent() at REcmaShellActionAdapter.cpp:149 0x8b897be
RScriptHandlerEcma::createActionApplicationLevel() at RScriptHandlerEcma.cpp:821 0x87641c2
RScriptHandler::triggerActionApplicationLevel() at RScriptHandler.cpp:52 0x8e15c44
RGuiAction::slotTrigger() at RGuiAction.cpp:587 0x8dea719
RGuiAction::qt_metacall() at moc_RGuiAction.cpp:86 0x8e32de1
QMetaObject::metacall() at 0xb5478c83
QMetaObject::activate() at 0xb5489134
QAction::triggered() at 0xb5869d99
QAction::activate() at 0xb586b48f
0xb5d550c0
0xb5d5b485
QMenu::mouseReleaseEvent() at 0xb5d5d65d
QtScriptShell_QMenu::mouseReleaseEvent() at 0xb0432feb
QWidget::event() at 0xb58da629
QMenu::event() at 0xb5d5aec4
QtScriptShell_QMenu::event() at 0xb043621b
QApplicationPrivate::notify_helper() at 0xb5871d7c
QApplication::notify() at 0xb58772c4
QCoreApplication::notifyInternal() at 0xb547215b
QApplicationPrivate::sendMouseEvent() at 0xb5875152
0xb59068fc
QApplication::x11ProcessEvent() at 0xb5905d26
0xb5932f04
g_main_context_dispatch() at 0xb4af3509
0xb4af3d10
g_main_context_iteration() at 0xb4af3fce
QEventDispatcherGlib::processEvents() at 0xb54a2741
0xb5932a55
QEventLoop::processEvents() at 0xb547131d
QEventLoop::exec() at 0xb54715aa
QCoreApplication::exec() at 0xb5473701
qtscript_QCoreApplication_static_call() at 0xb0a9c4b7
0xb6bd813c
0xb6ac1f68
0xb6a9164c
0xb11c9f5c
0xb6a44262
0xb6a445f7
0xb6bb0f92
QScriptEngine::evaluate() at 0xb6bba46f
RScriptHandlerEcma::doScript() at RScriptHandlerEcma.cpp:677 0x876330c
RScriptHandler::init() at RScriptHandler.cpp:31 0x8e15a46
main() at main.cpp:151 0x875d23d
|
|
109 | QCAD (main) | Bug Report | Low | Crash when start in Ubuntu 11.04 x64 | Closed | |
|
Task Description
Hi, when strat Qcad3 first time and close the info window, the software crash. I copy the command line:
$ '/home/gabriel/Descargas/qcad-3.0.0-tp1-prof-linux/qcad'
/usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so: clase ELF errónea: ELFCLASS64
(<unknown>:3211): Gtk-WARNING **: Failed to load type module: /usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so
/usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so: clase ELF errónea: ELFCLASS64
(<unknown>:3211): Gtk-WARNING **: Failed to load type module: /usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so
(<unknown>:3211): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/immodules/im-ibus.so: clase ELF errónea: ELFCLASS64
(<unknown>:3211): Gtk-WARNING **: Loading IM context type 'ibus' failed
(<unknown>:3211): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/immodules/im-ibus.so: clase ELF errónea: ELFCLASS64
(<unknown>:3211): Gtk-WARNING **: Loading IM context type 'ibus' failed
/usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so: clase ELF errónea: ELFCLASS64
(<unknown>:3211): Gtk-WARNING **: Failed to load type module: /usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so
/usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so: clase ELF errónea: ELFCLASS64
(<unknown>:3211): Gtk-WARNING **: Failed to load type module: /usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so
(<unknown>:3211): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/immodules/im-ibus.so: clase ELF errónea: ELFCLASS64
(<unknown>:3211): Gtk-WARNING **: Loading IM context type 'ibus' failed
CWD set to: "/home/gabriel/Descargas/qcad-3.0.0-tp1-prof-linux"
library path: "/home/gabriel/Descargas/qcad-3.0.0-tp1-prof-linux/plugins"
Debug: Init script plugins...
Warning: MDI child is NULL
Warning: MDI child is NULL
Warning: RGuiAction::getByScriptFile: no action found: "scripts/Snap/Coordinate/Coordinate.js"
Debug: Hatch.init
Debug: Text.init
Debug: TIMER: 1492 ms - "loading and initializing plugins"
Warning: RScriptHandlerEcma::doScript: engine busy: aborting evaluation of script:
"scripts/File/New/New.js"
Warning: QScriptEngine::newVariant(): changing class of non-QScriptObject not supported
Debug: Creating storage...
Debug: Creating spatial index...
Debug: Creating document...
Debug: Creating MDI child...
Debug: Initialize Viewports...
Debug: Init graphics view...
Debug: Init scrollbars...
Debug: Init rulers...
Debug: Init idle and default actions...
Debug: Show MDI child...
Debug: Init event handler...
Debug: Setting auto snap...
Warning: QScriptEngine::newVariant(): changing class of non-QScriptObject not supported
Warning: QScriptEngine::newVariant(): changing class of non-QScriptObject not supported
/usr/lib/gio/modules/libgiobamf.so: clase ELF errónea: ELFCLASS64
Failed to load module: /usr/lib/gio/modules/libgiobamf.so
/usr/lib/gio/modules/libgvfsdbus.so: clase ELF errónea: ELFCLASS64
Failed to load module: /usr/lib/gio/modules/libgvfsdbus.so
(<unknown>:3211): Gtk-WARNING **: Error loading theme icon 'window-close' for stock: No se ha podido cargar el módulo de carga de imágenes: /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so: /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so: clase ELF errónea: ELFCLASS64
(<unknown>:3211): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
** (<unknown>:3211): CRITICAL **: murrine_style_draw_render_icon: assertion `base_pixbuf != NULL' failed
(<unknown>:3211): Gtk-CRITICAL **: IA__gtk_style_render_icon: assertion `pixbuf != NULL' failed
(<unknown>:3211): GdkPixbuf-CRITICAL **: gdk_pixbuf_get_pixels: assertion `GDK_IS_PIXBUF (pixbuf)' failed
(<unknown>:3211): GdkPixbuf-CRITICAL **: gdk_pixbuf_get_width: assertion `GDK_IS_PIXBUF (pixbuf)' failed
(<unknown>:3211): GdkPixbuf-CRITICAL **: gdk_pixbuf_get_height: assertion `GDK_IS_PIXBUF (pixbuf)' failed
Segmentation fault
[email protected]:~/Descargas/qcad-3.0.0-tp1-prof-linux$ '/home/gabriel/Descargas/qcad-3.0.0-tp1-prof-linux/qcad'
/usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so: clase ELF errónea: ELFCLASS64
(<unknown>:3380): Gtk-WARNING **: Failed to load type module: /usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so
/usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so: clase ELF errónea: ELFCLASS64
(<unknown>:3380): Gtk-WARNING **: Failed to load type module: /usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so
(<unknown>:3380): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/immodules/im-ibus.so: clase ELF errónea: ELFCLASS64
(<unknown>:3380): Gtk-WARNING **: Loading IM context type 'ibus' failed
(<unknown>:3380): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/immodules/im-ibus.so: clase ELF errónea: ELFCLASS64
(<unknown>:3380): Gtk-WARNING **: Loading IM context type 'ibus' failed
/usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so: clase ELF errónea: ELFCLASS64
(<unknown>:3380): Gtk-WARNING **: Failed to load type module: /usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so
/usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so: clase ELF errónea: ELFCLASS64
(<unknown>:3380): Gtk-WARNING **: Failed to load type module: /usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so
(<unknown>:3380): Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/immodules/im-ibus.so: clase ELF errónea: ELFCLASS64
(<unknown>:3380): Gtk-WARNING **: Loading IM context type 'ibus' failed
CWD set to: "/home/gabriel/Descargas/qcad-3.0.0-tp1-prof-linux"
library path: "/home/gabriel/Descargas/qcad-3.0.0-tp1-prof-linux/plugins"
Debug: Init script plugins...
Warning: MDI child is NULL
Warning: MDI child is NULL
Warning: RGuiAction::getByScriptFile: no action found: "scripts/Snap/Coordinate/Coordinate.js"
Debug: Hatch.init
Debug: Text.init
Debug: TIMER: 1520 ms - "loading and initializing plugins"
Warning: RScriptHandlerEcma::doScript: engine busy: aborting evaluation of script:
"scripts/File/New/New.js"
Warning: QScriptEngine::newVariant(): changing class of non-QScriptObject not supported
Debug: Creating storage...
Debug: Creating spatial index...
Debug: Creating document...
Debug: Creating MDI child...
Debug: Initialize Viewports...
Debug: Init graphics view...
Debug: Init scrollbars...
Debug: Init rulers...
Debug: Init idle and default actions...
Debug: Show MDI child...
Debug: Init event handler...
Debug: Setting auto snap...
Warning: QScriptEngine::newVariant(): changing class of non-QScriptObject not supported
Warning: QScriptEngine::newVariant(): changing class of non-QScriptObject not supported
/usr/lib/gio/modules/libgiobamf.so: clase ELF errónea: ELFCLASS64
Failed to load module: /usr/lib/gio/modules/libgiobamf.so
/usr/lib/gio/modules/libgvfsdbus.so: clase ELF errónea: ELFCLASS64
Failed to load module: /usr/lib/gio/modules/libgvfsdbus.so
(<unknown>:3380): Gtk-WARNING **: Error loading theme icon 'window-close' for stock: No se ha podido cargar el módulo de carga de imágenes: /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so: /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so: clase ELF errónea: ELFCLASS64
(<unknown>:3380): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
** (<unknown>:3380): CRITICAL **: murrine_style_draw_render_icon: assertion `base_pixbuf != NULL' failed
(<unknown>:3380): Gtk-CRITICAL **: IA__gtk_style_render_icon: assertion `pixbuf != NULL' failed
(<unknown>:3380): GdkPixbuf-CRITICAL **: gdk_pixbuf_get_pixels: assertion `GDK_IS_PIXBUF (pixbuf)' failed
(<unknown>:3380): GdkPixbuf-CRITICAL **: gdk_pixbuf_get_width: assertion `GDK_IS_PIXBUF (pixbuf)' failed
(<unknown>:3380): GdkPixbuf-CRITICAL **: gdk_pixbuf_get_height: assertion `GDK_IS_PIXBUF (pixbuf)' failed
Segmentation fault
|
|
1544 | QCAD (main) | Bug Report | Low | Crash when selecting spline | Closed | |
|
Task Description
This is an interesting bug on my machine. The attached file crashes on 3.15.5, works perfectly well on 3.11.0 and 3.7.5
To see the problem open the file and click on the upper spline. QCAD disappears.
dajo
|
|
2046 | QCAD (main) | Bug Report | Low | Crash when scaling, rotating and mirroring | Closed | |
1 |
Task Description
Hallo Andrew
Beim Skalieren(SZ), Rotieren(RO), Spiegeln(MI) beendet sich QCAD, wenn gespeichert wird. Änderungen werden nicht gepeichert.
When scaling (SZ), rotating (RO), mirroring (MI), QCAD ends when it is saved. Changes are not saved.
|
|
509 | QCAD (main) | Bug Report | Low | Crash when resizing command line size | Closed | |
|
Task Description
Crash in QVariantAnimation.
Potential fix: configure Qt with -D QT_NO_ANIMATION
TODO: check on other platforms
|
|
2103 | ECMAScript | Bug Report | Low | Crash when lengthen() executed twice | Closed | |
1 |
Task Description
This code was executed in the Script Shell window. Then the program is failing of and closed.
a = addLine(0,0,100,100);
lengthen(a, true, 50); // success
lengthen(a, true, 50); // FAILED!
|
|
2092 | QCAD (main) | Bug Report | Low | crash when changing shortcut in preferences | Assigned | |
|
Task Description
The application crashes when I try to change a shortcut in the preferences. And only after resizing the preferences window. In the attachement are the cli warnings. I also tried the 3.24.3.9 snapshot with the same result.
|
|
1644 | QCAD (main) | Bug Report | Low | Crash on hide all layers button / mixed layers of diffe ... | Closed | |
2 |
Task Description
Hi!
it occorred to me now several times, that I have been working on 2 or more files simultaneously when suddenly on some operations layers from one file showed up in the other file. nothing was pasted when it happened just many files open, or few files with many layers in them. (about 100 layers, but sometimes also only 10 layers) Today I disabled a single layer in one dxf (A) which caused all layers of the other dxf (B) to show up in the layer list (and the layers that should show up were all gone).
I knew this already from 2 more occurances and tried the best to undo all my changes in (A) before “emergency saving” (A). I closed one of the two dxf files (A), leaving one open (B). Everthing seemed pretty normal again. Then pressing the “hide all layers” button just crashed qcad without any message. That crash on “hide all layers” happened twice today). I can’t reproduce the crash right now, but will add details here when I find something. As far as I remember the bug occured already in qcad 3.17, but I’m now on 3.18.1
thanks :) Martin
|
|
658 | QCAD (main) | Bug Report | Low | crash if file is write (!) only | Closed | |
|
Task Description
Opening a file which is (by accident) write only results in QCad crashing. Read only or read/write files are opened without problems.
As write only files do not make much sense, this should not come up too often...
|
|
56 | QCAD (main) | Bug Report | Low | Courier font collision | Closed | |
|
Task Description
Rename Courier.cxf font, correct courier in imported QCAD 2 files
|
|
1284 | QCAD (main) | Feature Request | Low | Count up counter for consecutive number labeling | Closed | |
|
Task Description
please see below:
http://www.qcad.org/rsforum/viewtopic.php?f=107&t=3781
|
|
1977 | QCAD (main) | Feature Request | Low | Corresponding coordinate format | Assigned | |
|
Task Description
Hi,
It would be less confusing to read messages in the command line protocol if it would use the same coordinate separators like the settings below Application Preferences / General / Coordinate Format.
This example shows the “Absolute Cartesian Coordinate” but of course all corresponding format settings should be used within messages.
Absolute Cartesian Coordinate: Setting = semicolon (;) but the message will use division (/).
|
|
470 | QCAD (main) | Bug Report | Low | Copy/paste results in Z!=0 | Closed | |
|
Task Description
Split from FS#465 by Stefan:
Copy+Paste with paste in a new drawing results in Z=-13.6... which caused the problems of pattern-hatch and select-impossible.
|
|
1413 | QCAD (main) | Bug Report | Low | Copy/Paste from multiple DXF into file is impossible | Closed | |
|
Task Description
I have 3 DXF files and I want to merge them all into 1 single file, so I copy/paste the first, copy/paste the second but for the last it’s impossible because QCAD paste the wrong copy. More I try and more the result is weird
|
|
950 | QCAD (main) | Feature Request | Low | Copy properties from... / Copy attributes from... | Closed | |
8 |
Task Description
See discussion at: http://www.qcad.org/rsforum/viewtopic.php?f=31&t=2614
|
|
579 | QCAD (main) | Feature Request | Low | Copy layers / blocks | Assigned | |
2 |
Task Description
Duplicate (copy, clone) a layer with or without entities on it. New name can be specified by user.
|
|
1625 | QCAD (main) | Feature Request | Low | Copy Layer | Closed | |
|
Task Description
Hi,
often I’m in the situation that I have to create an additional Layer mostly based on the settings from an already existing Layer. Just a question of organization. This new Layer has then everything identical except the name and one(?) Attribute. This could be that only the color or the Line weight deviates.
Example:
Existing Layer
Layer name: Lot 47 area existing
Attributes
Color: Red
Lineweight: 0.35
Linetype: Dashed
New Layer
Layer name: Lot 47 area proposal
Attributes
Color: Blue
Lineweight: 0.35
Linetype: Dashed
Unfortunately if done manually it happens in an blink of an eye that the human imperfection (me!) makes a mistake and (e.g.) a “Center (.5x)” finds it way into the Linetype Field instead of a “Center (.2x)” ....
The workaround for a few User is to use in cases like this the Property Editor / General Property and customize single Attributes. In my opinion the first step to lose the control over your own drawing ...
A “Copy Layer” / Copy Layer Attributes” function would speed up this task and eliminate to a minimum the “human imperfection” factor.
I could imagine that a right click (like copy block) on the Layer triggers the “Add Layer” function and the dialog is already prefigured with the Settings of the Source Layer ...... ready for editing. The new Layer itself is “empty” like any other new Layer.
|
|
1403 | QCAD (main) | Feature Request | Low | Copy and Paste vectorpoint to built a spline in QCAD | Closed | |
|
Task Description
Would it be possible like in AutoCAD and Draftsight, to copy (from CSV or TXT) into the command line of qcad a table with vectorpoint to built up a Spline in QCAD ?
Sample: Spline 10.5,10(LR+CR) 20.8,20.4(LR+CR)
and so on
this text would than paste into the command line, and works like a macro.
Will be very helpful to generate a Spline where the vectorpoint had been calculated with for example “Excel”
|
|
585 | QCAD (main) | Bug Report | Low | Copy & Paste Vorschau Proportionen passen nicht ... | Closed | |
|
Task Description
Kopiere ich Bemaßungen/Leader in die Zwischenablage und möchte diese dann wieder in die Zeichnung einfügen passen die Vorschau Proportionen nicht mit dem eingefügten Ergebnis überein. Eigentlich nur ein Schönheitsfehler aber es erschwert die korrekte Positionierung und die benutzung der Optionen wie skalieren, rotieren etc ...
|
|
155 | QCAD (main) | Bug Report | Low | Copy / paste: convert units | Closed | |
|
Task Description
Copy / paste: convert units
- copy: copy drawing unit to clipboard - paste: convert pasted entities from clipboard unit to drawing unit
|
|
1812 | QCAD/CAM | Bug Report | Low | Coordinate display: coordinates not updated while mouse ... | Closed | |
|
Task Description
The coordiantes (in the lower left corner) freeze while mouse is moving. Updates as soon as the mouse is stopped.
This slows me down considerably. I have to stop, wait (too see the coordinates), move, stop, wait, move back, stop, wait, move, stop wait... This gotta be a bug?
MacOS 10.12.6
|
|
683 | QCAD (main) | Feature Request | Low | Convert Spline to Polyline tool | Closed | |
|
Task Description
To have a tool that could convert splines to polylines would be useful, particularly for laser cutting work where a nice steady flow is needed, otherwise you can get an erratic ‘jumpy’ movement when cutting.. Maybe a ‘two’ step procedure; 1.First convert to arc/line segments. 2. Then if needed convert to a continuous polyline.
|
|
1089 | QCAD/CAM | Bug Report | Low | Convert polyline from segments on locked layers deletes ... | Closed | |
1 |
Task Description
If you select (line) segments in a visible yet locked layer and choose “convert segments to polyline” (OG), the segments are deleted, but inserting the polyline fails. So you can easily destroy locked layers by mistake which contradicts the idea of locking layers.
|
|
503 | QCAD (main) | Feature Request | Low | Convert entities to points with a fixed distance | Assigned | |
|
Task Description
Select lines, arcs, ... and convert them to points along the lines, arcs, ... with a fixed distance.
See also forum at: http://www.ribbonsoft.com/rsforum/viewtopic.php?t=1834
|
|
2157 | QCAD (main) | Bug Report | Low | Controlpoint Spline exploded to polyline may induce NaN... | Assigned | |
1 |
Task Description
QCAD Professional Win installer 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
Documented in 3.25.2.4, reproducible under 3.25.2.7 In the attached file: → Explode the trial cases and locate NaN Widths. → These faulty widths are cleared while saving and reverting. = work around.
Related Post: https://www.qcad.org/rsforum/viewtopic.php?t=7902#p30902 Related Topic: https://www.qcad.org/rsforum/viewtopic.php?t=7901 Related Commit: https://github.com/qcad/qcad/commit/fcd7929bced7ae328029c1aa2ee2aff2745709c6
Arctic_Eddie reports failing CAM offset at exactly these points !!! Reported is a faulty arc with radius of over 360,000mm. - I can not reproduce this under QCAD working further on the Polys with NaNs. - However the direct offset of such controlpoint Splines is erroneous. (see file in post 30902)
Arctic_Eddie reports arc radii of over 10,000mm. - These don’t seem to be faulty. - I agree that BiArc fitting should be bound to a lower and certainly to an upper limit. - That should be huge otherwise faint curvature is represented by many wobbles or too quick by straight lines. (All this, keeping in mind that QCAD doesn’t return the optimum fitted BiArc, see: https://www.qcad.org/rsforum/viewtopic.php?t=4859)
Regards, CVH
|
|
1619 | QCAD (main) | Bug Report | Low | Context menu: relocating start point of selected polyli ... | Closed | |
|
Task Description
Select a polyline Right click on it to show context menu Set new position of start point Tool stays active and does not properly terminate
|
|
1444 | QCAD (main) | Bug Report | Low | Context menu: no entry to delete polyline node for firs ... | Closed | |
|
Task Description
Context menu does not show an entry to “Delete Node” for the first node of a polyline.
|
|
1366 | QCAD (main) | Bug Report | Low | Context Menu: Modify > Break Out Gap not working | Closed | |
|
Task Description
Using context Menu - Break Out Gap not working
|