diff --git a/projects/common/interfaces/UIElementInterfaces.ts b/projects/common/interfaces/UIElementInterfaces.ts
index 18cd26629a3169fc122bf12838c223a9b81d7b37..810ab67cc643d3491e5eb4e50c41b81bda1d5fdf 100644
--- a/projects/common/interfaces/UIElementInterfaces.ts
+++ b/projects/common/interfaces/UIElementInterfaces.ts
@@ -28,6 +28,7 @@ export interface PlayerElement {
   activeAfterID: string;
   minRuns: number;
   maxRuns: number | null;
+  showRestRuns: boolean;
   showRestTime: boolean;
   playbackTime: number;
 }
diff --git a/projects/common/models/audio-element.ts b/projects/common/models/audio-element.ts
index c6b6404c2b9650958080e177b17bbee0ccbf4241..c80a370b6d851da9c3ba7e21851768550798bf38 100644
--- a/projects/common/models/audio-element.ts
+++ b/projects/common/models/audio-element.ts
@@ -20,6 +20,7 @@ export class AudioElement extends UIElement implements PlayerElement {
   activeAfterID: string = '';
   minRuns: number = 1;
   maxRuns: number | null = null;
+  showRestRuns: boolean = false;
   showRestTime: boolean = true;
   playbackTime: number = 0;
 
diff --git a/projects/common/models/video-element.ts b/projects/common/models/video-element.ts
index a18de3976aa34633898be5c595c90f9e3b22a970..f960473781f126d2aa30a4569ae5bc17e29367be 100644
--- a/projects/common/models/video-element.ts
+++ b/projects/common/models/video-element.ts
@@ -20,6 +20,7 @@ export class VideoElement extends UIElement implements PlayerElement {
   activeAfterID: string = '';
   minRuns: number = 1;
   maxRuns: number | null = null;
+  showRestRuns: boolean = false;
   showRestTime: boolean = true;
   playbackTime: number = 0;
 
diff --git a/projects/common/util/unit-interface-initializer.ts b/projects/common/util/unit-interface-initializer.ts
index a6688263ae339f50034065a8a79889319afa6dd7..8ebfc4b681e6852eebe632c342fece57e9b32899 100644
--- a/projects/common/util/unit-interface-initializer.ts
+++ b/projects/common/util/unit-interface-initializer.ts
@@ -34,6 +34,7 @@ export function initPlayerElement(serializedElement: UIElement): PlayerElement {
     activeAfterID: serializedElement.activeAfterID as string || '',
     minRuns: serializedElement.minRuns as number || 1,
     maxRuns: serializedElement.maxRuns as number | null || null,
+    showRestRuns: serializedElement.showRestRuns as boolean || false,
     showRestTime: serializedElement.showRestTime as boolean || true,
     playbackTime: serializedElement.playbackTime as number || 0
   };
diff --git a/projects/editor/src/app/dialog.service.ts b/projects/editor/src/app/dialog.service.ts
index c33d32203b245b550cd0eff3c3af3c6c137031b8..631b3e4a042f9b4f03fb6bb0aca735e9c945a06c 100644
--- a/projects/editor/src/app/dialog.service.ts
+++ b/projects/editor/src/app/dialog.service.ts
@@ -246,6 +246,10 @@ export class RichTextEditDialog {
                      [ngModel]="newPlayerConfig.maxRuns || data.player.maxRuns"
                      (ngModelChange)="newPlayerConfig.maxRuns = $event">
             </mat-form-field>
+            <mat-checkbox [checked]="newPlayerConfig.showRestRuns || data.player.showRestRuns"
+                          (change)="newPlayerConfig.showRestRuns = $event.checked">
+              {{ 'player.showRestRuns' | translate }}
+            </mat-checkbox>
           </div>
         </mat-tab>
       </mat-tab-group>
@@ -257,6 +261,7 @@ export class RichTextEditDialog {
     `,
   styles: [
     'mat-dialog-content {min-height: 410px}',
+    '::ng-deep app-player-edit-dialog .mat-tab-body-content {overflow: hidden}',
     '.property-column {margin-right: 20px}'
   ]
 })
diff --git a/projects/editor/src/assets/i18n/de.json b/projects/editor/src/assets/i18n/de.json
index 53f88cf33fb3411f5993617fb11b90d65265b0e5..8ec0f6d9333d449c77e66c700c142dc42b249223 100644
--- a/projects/editor/src/assets/i18n/de.json
+++ b/projects/editor/src/assets/i18n/de.json
@@ -116,8 +116,8 @@
     "volumeControl": "Lautstärkeregelung",
     "uninterruptible": "Unterbrechen verbieten",
     "hideOtherPages": "Weitere Seiten verbergen",
-    "showRestRuns": "Verbleibender Durchläufe anzeigen",
     "showRestTime": "Verbleibende Zeit anzeigen",
+    "showRestRuns": "Verbleibende Durchläufe anzeigen",
     "hintLabel": "Aufforderungstext zum Starten",
     "hintLabelDelay": "Verzögerung Aufforderungstext (ms)",
     "activeAfterID": "Abspielbar nach Audio/Video-ID",