SVN commit 492994 by coppens: This was actually ok already :-) M +2 -4 kis_doc.cc --- trunk/koffice/krita/ui/kis_doc.cc #492993:492994 @@ -762,12 +762,11 @@ KoDocument* KisDoc::hitTest(const QPoint &pos, const QWMatrix& matrix) { KoDocument* doc = super::hitTest(pos, matrix); -/*LAYERREMOVE if (doc && doc != this) { // We hit a child document. We will only acknowledge we hit it, if the hit child // is the currently active parts layer. - KisPartLayer* partLayer = dynamic_cast - (currentImage() -> activeLayer().data()); + KisPartLayer* partLayer + = dynamic_cast(currentImage() -> activeLayer().data()); if (!partLayer) return this; @@ -779,7 +778,6 @@ kdDebug() << "Embedded part miss :-(" << endl; return this; } -*/ return doc; }