<div dir="ltr">Hi Nikos.<br><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Dec 4, 2013 at 2:11 AM, Nikos Alexandris <span dir="ltr"><<a href="mailto:nik@nikosalexandris.net" target="_blank">nik@nikosalexandris.net</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Vaclav and Anna,<br>
<br>
thank yo so muuch for the advancments in g.gui.mapswipes. Really, very useful.<br>
<br></blockquote><div><br></div><div>I am glad you find it useful.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">


There is one issue in mirror mode: the cross pointer (othen than the one<br>
set/used by the Operating System) might be in some cases too difficult to<br>
identify. This leads in trying to look for the pointer instead of focusing in<br>
comparing differences between mirrored images.<br>
<br>
A screenshot here:<br>
<<a href="http://nikosalexandris.net/owncloud/public.php?service=files&t=644f7a4dabe6e48b4696ae3b67a25cb3" target="_blank">http://nikosalexandris.net/owncloud/public.php?service=files&t=644f7a4dabe6e48b4696ae3b67a25cb3</a>>.<br>


<br>
In the left part, the pinky one is set by the OS. On the right one, it's hard<br>
to trace the thin cross-pointer. Can at least an implementation of changing<br>
the color be made? Or, any other<br>
smart solution...<br></blockquote><div><br></div><div>In the picture I cannot really see it, it's just not good quality screenshot or the cursor disappears?</div><div><br></div><div>I will try to add the settings of the cursor width and color when I have more time, the only problem is to create the gui for this. In the meantime, if you really need to change it, you can always edit the line which draws the cursor:</div>

<div><br></div><div><div>Index: gui/wxpython/mapswipe/mapwindow.py</div><div>===================================================================</div><div>--- gui/wxpython/mapswipe/mapwindow.py<span class="" style="white-space:pre">        </span>(revision 58342)</div>

<div>+++ gui/wxpython/mapswipe/mapwindow.py<span class="" style="white-space:pre">      </span>(working copy)</div><div>@@ -184,7 +184,7 @@</div><div>     def DrawMouseCross(self, coords):</div><div>         """!Draw moving cross."""</div>

<div>         self.pdcTmp.ClearId(self.lineid)</div><div>-        self.lineid = self.DrawCross(pdc = self.pdcTmp, coords = coords, size = 10, pen = wx.BLACK_PEN)</div><div>+        self.lineid = self.DrawCross(pdc = self.pdcTmp, coords = coords, size = 10, pen = wx.Pen(wx.Colour(250, 250, 250), 3))</div>

<div> </div><div>So tuple (250, 250, 250) is the color as R, G, B and the 3 is the desired width (currently it uses width 1).</div><div><br></div><div>You can then compile it with 'make' in the gui/wxpython directory.</div>

</div><div><br></div><div>Best,</div><div>Anna</div><div><br></div><div><br></div><div><br></div></div></div></div>