<?xml version="1.0" ?><feed xmlns="http://www.w3.org/2005/Atom">
  <title type="text">Flyspray::</title>
  <subtitle type="text">
    Flyspray::QCAD: Recently closed tasks  </subtitle>
  <id>http://www.qcad.org/bugtracker/</id>
    <updated>2013-05-19T13:44:12Z</updated>
  <link rel="self" type="text/xml" href="feed.php?feed_type=atom"/>
  <link rel="alternate" type="text/html" hreflang="en" href="/bugtracker/feed.php"/>
    <entry>
    <title>FS#810: Polyline - Simplify, icon missing</title>
    <link href="http://www.qcad.org/bugtracker/index.php?do=details&amp;task_id=810" />    
    <updated>2013-05-19T13:44:12Z</updated>    
    <published>2013-05-19T12:50:28Z</published>
    <content type="xhtml" xml:lang="en" xml:base="http://diveintomark.org/">
      <div xmlns="http://www.w3.org/1999/xhtml">
        
<p>
windows 7-64<br />3.1 beta
</p>

<p>
Polyline - Simplify option, the icon is missing.
</p>

<p>
The tool still functions as expected.
</p>
      </div>
    </content>
    <author><name>--</name></author>
    <id>http://www.qcad.org/bugtracker/:810</id>
  </entry>
    <entry>
    <title>FS#808: Strange &#039;jumpy&#039; behavior when closing drawing windows.</title>
    <link href="http://www.qcad.org/bugtracker/index.php?do=details&amp;task_id=808" />    
    <updated>2013-05-18T16:25:22Z</updated>    
    <published>2013-05-15T11:13:28Z</published>
    <content type="xhtml" xml:lang="en" xml:base="http://diveintomark.org/">
      <div xmlns="http://www.w3.org/1999/xhtml">
        
<p>
Test case:
</p>

<p>
In Windows, set up say 2 or 3 new blank drawings.Then close them down one by one and notice the behavior when closing these drawing windows down!
</p>
      </div>
    </content>
    <author><name>--</name></author>
    <id>http://www.qcad.org/bugtracker/:808</id>
  </entry>
    <entry>
    <title>FS#623: C++ plugin interface</title>
    <link href="http://www.qcad.org/bugtracker/index.php?do=details&amp;task_id=623" />    
    <updated>2013-05-16T18:40:30Z</updated>    
    <published>2012-06-11T12:07:41Z</published>
    <content type="xhtml" xml:lang="en" xml:base="http://diveintomark.org/">
      <div xmlns="http://www.w3.org/1999/xhtml">
        
<p>
C++ plugin interface to add functionality from existing C / C++ libraries to QCAD.<br />
</p>
      </div>
    </content>
    <author><name>Andrew</name></author>
    <id>http://www.qcad.org/bugtracker/:623</id>
  </entry>
    <entry>
    <title>FS#806: File - Print , not working</title>
    <link href="http://www.qcad.org/bugtracker/index.php?do=details&amp;task_id=806" />    
    <updated>2013-05-14T11:08:18Z</updated>    
    <published>2013-05-13T19:35:49Z</published>
    <content type="xhtml" xml:lang="en" xml:base="http://diveintomark.org/">
      <div xmlns="http://www.w3.org/1999/xhtml">
        
<p>
Windows 7-64
</p>

<p>
Selecting print from Main menu &gt; File &gt; Print - not working.
</p>

<p>
Print function only working from selecting the Print icon button from within the Print preview stage!<br />
</p>
      </div>
    </content>
    <author><name>--</name></author>
    <id>http://www.qcad.org/bugtracker/:806</id>
  </entry>
    <entry>
    <title>FS#711: Drawing preferences dialog too large</title>
    <link href="http://www.qcad.org/bugtracker/index.php?do=details&amp;task_id=711" />    
    <updated>2013-05-10T18:48:23Z</updated>    
    <published>2012-11-07T23:02:14Z</published>
    <content type="xhtml" xml:lang="en" xml:base="http://diveintomark.org/">
      <div xmlns="http://www.w3.org/1999/xhtml">
        
<p>
See forum at:<br /><a href="http://www.ribbonsoft.com/rsforum/viewtopic.php?f=11&amp;t=2249&amp;view=unread#unread" class="urlextern" title="http://www.ribbonsoft.com/rsforum/viewtopic.php?f=11&amp;t=2249&amp;view=unread#unread">http://www.ribbonsoft.com/rsforum/viewtopic.php?f=11&amp;t=2249&amp;view=unread#unread</a> 
</p>
      </div>
    </content>
    <author><name>Andrew</name></author>
    <id>http://www.qcad.org/bugtracker/:711</id>
  </entry>
    <entry>
    <title>FS#803: Pan and Zoom with touch pad are hard to use (wrong buffer handling)</title>
    <link href="http://www.qcad.org/bugtracker/index.php?do=details&amp;task_id=803" />    
    <updated>2013-05-04T19:55:26Z</updated>    
    <published>2013-04-29T18:03:33Z</published>
    <content type="xhtml" xml:lang="en" xml:base="http://diveintomark.org/">
      <div xmlns="http://www.w3.org/1999/xhtml">
        
<p>
Version:<br />V 3.0.9 and earlier.
</p>

<p>
How to reproduce:<br />Go into App Preferences, in Graphics View&rarr;Navigation, enable pan gesture. Now add any drawing and pan around for ten seconds quickly, not taking the fingers off the mouse/touch pad. Take the fingers off the pad now. 
</p>

<p>
What goes wrong:<br />QCad will pan around the drawing for another 30 seconds or so, dutifully executing all the buffered mouse moves.
</p>

<p>
Suggested solution:<br />Qt buffers more mouse pan-moves than QCad can handle. QCad executes every move in the buffer, making the pan feature close to unusable. The zoom function has the same bug, but it much less pronounced. 
</p>

<p>
This is easily solved: when receiving a pan event (two finger scroll), just check if there are more events in the queue. If there are, accumulate the effect, but don&rsquo;t draw yet. As soon as the buffer is empty, kick off the redraw. The result is a *much* more fluent and responsive user interface.
</p>

<p>
Please fix soon. This wonderful feature makes life so easy, but currently it is unusable. Thanks. Matthias.<br />
</p>
      </div>
    </content>
    <author><name>Matthias Melcher</name></author>
    <id>http://www.qcad.org/bugtracker/:803</id>
  </entry>
    <entry>
    <title>FS#804: &quot;Color by Layer&quot; uses wrong Layer for Blocks</title>
    <link href="http://www.qcad.org/bugtracker/index.php?do=details&amp;task_id=804" />    
    <updated>2013-05-04T19:54:27Z</updated>    
    <published>2013-04-29T18:10:26Z</published>
    <content type="xhtml" xml:lang="en" xml:base="http://diveintomark.org/">
      <div xmlns="http://www.w3.org/1999/xhtml">
        
<p>
Not sure whether this is intentional, but <acronym title="In my humble opinion">IMHO</acronym> it is not logical and wrong:
</p>

<p>
When loading a block that has a drawing set to &ldquo;color by layer&rdquo; into any layer but &ldquo;0&rdquo;, it will still always show the color of the &ldquo;0&rdquo; layer.
</p>

<p>
However, it should show the color of the layer that this Block is in (this is likely true for all the other attributes).<br />
</p>
      </div>
    </content>
    <author><name>Matthias Melcher</name></author>
    <id>http://www.qcad.org/bugtracker/:804</id>
  </entry>
    <entry>
    <title>FS#149: SIGABRT when trying to use entiy.setColor()</title>
    <link href="http://www.qcad.org/bugtracker/index.php?do=details&amp;task_id=149" />    
    <updated>2013-04-23T11:38:59Z</updated>    
    <published>2011-07-27T14:31:24Z</published>
    <content type="xhtml" xml:lang="en" xml:base="http://diveintomark.org/">
      <div xmlns="http://www.w3.org/1999/xhtml">
        
<p>
Script context:<br />Compare.js#413:<br />
</p>
<pre class="code JavaScript">Compare.<span class="me1">markDifferences</span> = <span class="kw2">function</span><span class="br0">&#40;</span>newAndMissingIds<span class="br0">&#41;</span> <span class="br0">&#123;</span>
...
            <span class="me1">entity</span> = Compare.<span class="me1">doc1</span>.<span class="me1">queryEntity</span><span class="br0">&#40;</span>id<span class="br0">&#41;</span>;
            entity.<span class="me1">setColor</span><span class="br0">&#40;</span><span class="kw2">new</span> RColor<span class="br0">&#40;</span><span class="st0">&quot;green&quot;</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;
            op = <span class="kw2">new</span> RModifyObjectOperation<span class="br0">&#40;</span>entity.<span class="me1">data</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;
            Compare.<span class="me1">di1</span>.<span class="me1">applyOperation</span><span class="br0">&#40;</span>op<span class="br0">&#41;</span>;</pre>
<p>
ECMA code:<br />
</p>
<pre class="code C++">         QScriptValue
        REcmaSharedPointerEntity::<span class="me2">setColor</span>
        <span class="br0">&#40;</span>QScriptContext* context, QScriptEngine* engine<span class="br0">&#41;</span> 
        <span class="br0">&#123;</span>
            QScriptValue result = engine-&gt;undefinedValue<span class="br0">&#40;</span><span class="br0">&#41;</span>;
                    <span class="co1">// public function: can be called from ECMA wrapper of ECMA shell:</span>
                    REntity* self = 
                        getSelf<span class="br0">&#40;</span><span class="st0">&quot;setColor&quot;</span>, context<span class="br0">&#41;</span>;
=&gt;               Q_ASSERT<span class="br0">&#40;</span>self!=<span class="kw2">NULL</span><span class="br0">&#41;</span>;</pre>
<p>
Stacktrace:<br />
</p>
<pre class="code">
Thread [1] 18673 (Suspended : Signal : SIGABRT:Aborted)	
	__kernel_vsyscall() at 0xffffe424	
	raise() at 0xb4efc8df	
	abort() at 0xb4efe220	
	RMainWindow::messageHandler() at RMainWindow.cpp:63 0x8f3917a	
	qt_message_output() at 0xb5356f65	
	0xb53571ab	
	qFatal() at 0xb53572c9	
	qt_assert() at 0xb5357355	
	REcmaSharedPointerEntity::setColor() at REcmaSharedPointerEntity.cpp:1,360 0x8bc0602	
	0xb6bd813c	
	0xb6ac1f68	
	0xb6a9164c	
	0xa622afd2	
	0xb6a423e3	
	0xb6af06e0	
	0xb6ac201e	
	0xb6be0cd3	
	0xb6be11a9	
	QMetaObject::metacall() at 0xb5478c83	
	QMetaObject::activate() at 0xb5489134	
	&lt;...more frames...&gt;	
</pre>
      </div>
    </content>
    <author><name>Martin</name></author>
    <id>http://www.qcad.org/bugtracker/:149</id>
  </entry>
    <entry>
    <title>FS#801: Different solid appearence in Autocad and Qcad</title>
    <link href="http://www.qcad.org/bugtracker/index.php?do=details&amp;task_id=801" />    
    <updated>2013-04-23T09:45:18Z</updated>    
    <published>2013-04-22T20:29:22Z</published>
    <content type="xhtml" xml:lang="en" xml:base="http://diveintomark.org/">
      <div xmlns="http://www.w3.org/1999/xhtml">
        
<p>
Hi,
</p>

<p>
It seems that QCAD and Autocad treat solid fills differently. Here is attached<br />example and its view in QCAD and autocadws.com web service. I found that order <br />of vertices is important.
</p>

<p>
Thank you<br />Mikhail <br />
</p>
      </div>
    </content>
    <author><name>Mikhail</name></author>
    <id>http://www.qcad.org/bugtracker/:801</id>
  </entry>
    <entry>
    <title>FS#800: Configurable auto snap</title>
    <link href="http://www.qcad.org/bugtracker/index.php?do=details&amp;task_id=800" />    
    <updated>2013-04-22T18:04:04Z</updated>    
    <published>2013-04-22T11:20:38Z</published>
    <content type="xhtml" xml:lang="en" xml:base="http://diveintomark.org/">
      <div xmlns="http://www.w3.org/1999/xhtml">
        
<p>
Enable / disable individual snaps for use with auto snap.<br />
</p>
      </div>
    </content>
    <author><name>Andrew</name></author>
    <id>http://www.qcad.org/bugtracker/:800</id>
  </entry>
  </feed>
