From 2e8cc4da8204b30abbc23a157596b435b07c28ec Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 5 Aug 2025 16:10:57 +0200 Subject: [PATCH] Fix display not updating when changing tool CURA-12660 Previous fix caused issues when moving to preview --- plugins/PaintTool/PaintView.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/PaintTool/PaintView.py b/plugins/PaintTool/PaintView.py index d9dc877361..e7d5125ebb 100644 --- a/plugins/PaintTool/PaintView.py +++ b/plugins/PaintTool/PaintView.py @@ -189,6 +189,7 @@ class PaintView(View): def setPaintType(self, paint_type: str) -> None: self._current_paint_type = paint_type + self._prepareDataMapping() def _prepareDataMapping(self): node = Selection.getAllSelectedObjects()[0]