From ebb21d05b1b0f460d0197273a4fe37de4e9b4247 Mon Sep 17 00:00:00 2001 From: ArsenArsen Date: Sat, 1 Jul 2017 17:31:54 +0200 Subject: [PATCH] Crop editor finally has a title --- cropeditor/cropeditor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cropeditor/cropeditor.cpp b/cropeditor/cropeditor.cpp index 7868f4c..c2b8636 100644 --- a/cropeditor/cropeditor.cpp +++ b/cropeditor/cropeditor.cpp @@ -21,6 +21,7 @@ CropEditor::CropEditor(QPixmap *image, QObject *parent) : QObject(parent) { view->resize(image->width(), image->height()); view->setMinimumSize(image->size()); view->move(0, 0); + view->setWindowTitle("KShare Crop Editor"); view->show(); connect(scene, &CropScene::closedWithRect, this, &CropEditor::crop);