diff --git a/client/src/app/site/projector/components/projector-detail/projector-detail.component.html b/client/src/app/site/projector/components/projector-detail/projector-detail.component.html index 66654506e..f8e173fb8 100644 --- a/client/src/app/site/projector/components/projector-detail/projector-detail.component.html +++ b/client/src/app/site/projector/components/projector-detail/projector-detail.component.html @@ -142,7 +142,7 @@
drag_indicator
-
+
@@ -235,7 +235,12 @@ - Slide @@ -245,7 +250,12 @@ - Overlay @@ -255,7 +265,12 @@ - Chyron @@ -272,8 +287,7 @@ --> - - +
diff --git a/client/src/app/site/projector/components/projector-detail/projector-detail.component.scss b/client/src/app/site/projector/components/projector-detail/projector-detail.component.scss index 3a618c130..61ff7d595 100644 --- a/client/src/app/site/projector/components/projector-detail/projector-detail.component.scss +++ b/client/src/app/site/projector/components/projector-detail/projector-detail.component.scss @@ -93,6 +93,10 @@ width: 25px; color: slategrey; cursor: move; + + &.no-drag { + cursor: default; + } } .button-right { diff --git a/openslides/core/views.py b/openslides/core/views.py index 3fb78ea38..3c984fe6f 100644 --- a/openslides/core/views.py +++ b/openslides/core/views.py @@ -179,6 +179,7 @@ class ProjectorViewSet(ModelViewSet): at the same time. """ projector = self.get_object() + projector.scroll = 0 elements = request.data.get("elements") preview = request.data.get("preview") history_element = request.data.get("append_to_history")