File fix-QPainter-flags.patch of Package rocs4
diff --git a/VisualEditor/Actions/SelectMoveHandAction.cpp b/VisualEditor/Actions/SelectMoveHandAction.cpp
index 78ab22d..22eafe8 100644
--- a/VisualEditor/Actions/SelectMoveHandAction.cpp
+++ b/VisualEditor/Actions/SelectMoveHandAction.cpp
@@ -84,7 +84,7 @@ bool SelectMoveHandAction::executePress(QPointF pos)
if (_graphScene->items().count() > 600) { // 5! + 25 items on screen
_graphScene->views().at(0)->setRenderHints(QPainter::Antialiasing
- & QPainter::TextAntialiasing);
+ | QPainter::TextAntialiasing);
}
return true;
}