diff --git a/src/mainview/components/ParticipantsLayer.qml b/src/mainview/components/ParticipantsLayer.qml index 9d8d44175d185e469c914b85c835968fab4c083b..23d38512cde909beecd565880b027ebba150e6e3 100644 --- a/src/mainview/components/ParticipantsLayer.qml +++ b/src/mainview/components/ParticipantsLayer.qml @@ -131,6 +131,7 @@ Item { radius: 10 text: "<" visible: genericParticipantsRect.currentPos > 0 + && activeParticipantsFlow.visible onClicked: { if (genericParticipantsRect.currentPos > 0) genericParticipantsRect.currentPos-- @@ -239,6 +240,7 @@ Item { radius: 10 text: ">" visible: genericParticipantsRect.topLimit - genericParticipantsRect.showable > genericParticipantsRect.currentPos + && activeParticipantsFlow.visible onClicked: { if (genericParticipantsRect.topLimit - genericParticipantsRect.showable > genericParticipantsRect.currentPos) genericParticipantsRect.currentPos++