Update modules

This commit is contained in:
ArsenArsen 2017-05-06 00:10:12 +02:00
parent 905f9b27d1
commit b601b958c9
2 changed files with 1 additions and 3 deletions

@ -1 +1 @@
Subproject commit 040cf5ec0cf2ed605c39d7bc4d0164ab7c54d6bf
Subproject commit 7c4ef6a03a219c99932975bab270ea812589e1ad

View File

@ -1,5 +1,4 @@
#include "textitem.hpp"
#include <QDebug>
#include <QInputDialog>
#include <QtMath>
@ -17,7 +16,6 @@ void TextItem::mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) {
auto ee
= 180 + qRadiansToDegrees(qAtan2((textItem->pos().y() - e->scenePos().y()), (textItem->pos().x() - e->scenePos().x())));
textItem->setRotation(ee);
qDebug() << ee;
}
}