diff --git a/src/Components/Core/Presentation/AvatarEditor/AvatarEditorPreview/AvatarEditorPreviewCamera/AvatarEditorPreviewCameraController.ts b/src/Components/Core/Presentation/AvatarEditor/AvatarEditorPreview/AvatarEditorPreviewCamera/AvatarEditorPreviewCameraController.ts
index 658a08092..766c0828f 100644
--- a/src/Components/Core/Presentation/AvatarEditor/AvatarEditorPreview/AvatarEditorPreviewCamera/AvatarEditorPreviewCameraController.ts
+++ b/src/Components/Core/Presentation/AvatarEditor/AvatarEditorPreview/AvatarEditorPreviewCamera/AvatarEditorPreviewCameraController.ts
@@ -15,6 +15,11 @@ export default class AvatarEditorPreviewCameraController
// attach controls
camera.inputs.attached.mousewheel.attachControl();
camera.inputs.attached.pointers.attachControl();
+
+ // Empfindlichkeit für Pinch/Zoom verringern
+ camera.pinchPrecision = 200; // höherer Wert = geringeres Zoom pro Geste
+ // oder: camera.pinchDeltaPercentage = 0.002; // anpassen nach Bedarf
+
const pointersInput = camera.inputs.attached
.pointers as ArcRotateCameraPointersInput;
pointersInput.multiTouchPanAndZoom = true;
diff --git a/src/Components/Core/Presentation/React/GeneralComponents/ColorPicker/ColorPickerModal.tsx b/src/Components/Core/Presentation/React/GeneralComponents/ColorPicker/ColorPickerModal.tsx
index 7a39f1c9d..ab54dd68c 100644
--- a/src/Components/Core/Presentation/React/GeneralComponents/ColorPicker/ColorPickerModal.tsx
+++ b/src/Components/Core/Presentation/React/GeneralComponents/ColorPicker/ColorPickerModal.tsx
@@ -23,7 +23,7 @@ export default function ColorPickerModal({
}: AdLerUIComponent
) {
if (!showModal) return null;
return (
-