# HG changeset patch # User nemo # Date 1297311961 18000 # Node ID 0985edac2ad74f3ff2b4f3be42b8f8b081942235 # Parent 55b9145fea94d09bb1ada5a9b3a5e3ac56a76b17 use ctrl instead of alt to avoid colliding with linux window positioning diff -r 55b9145fea94 -r 0985edac2ad7 QTfrontend/drawmapscene.cpp --- a/QTfrontend/drawmapscene.cpp Wed Feb 09 21:59:43 2011 +0300 +++ b/QTfrontend/drawmapscene.cpp Wed Feb 09 23:26:01 2011 -0500 @@ -34,7 +34,7 @@ { QPainterPath path = m_currPath->path(); - if(mouseEvent->modifiers() & Qt::AltModifier) + if(mouseEvent->modifiers() & Qt::ControlModifier) { int c = path.elementCount(); QPointF pos = mouseEvent->scenePos();