From bb692e852e24710630124099d9625f3fcd67c62e Mon Sep 17 00:00:00 2001 From: ArsenArsen Date: Thu, 22 Jun 2017 17:47:49 +0200 Subject: [PATCH] Small bug I just noticed --- cropeditor/cropeditor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cropeditor/cropeditor.cpp b/cropeditor/cropeditor.cpp index 1b12497..1d95e05 100644 --- a/cropeditor/cropeditor.cpp +++ b/cropeditor/cropeditor.cpp @@ -20,6 +20,7 @@ CropEditor::CropEditor(QPixmap *image, QObject *parent) : QObject(parent) { scene->setSceneRect(image->rect()); view->show(); view->resize(pixmapItem->pixmap().width(), pixmapItem->pixmap().height()); + view->move(0, 0); connect(scene, &CropScene::closedWithRect, this, &CropEditor::crop); }