Skip to content

Commit 25e4201

Browse files
Merge pull request #1558 from contour-terminal/fix/long_bell_queue
Improves handling of constant bell sound spawning
2 parents d527447 + 485b340 commit 25e4201

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

metainfo.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@
141141
<li>Fixes bell sound in spawned window in same process (#1515)</li>
142142
<li>Fixes status line crush (#1511)</li>
143143
<li>Fixes application window icon on (KDE) Wayland</li>
144+
<li>Improves handling of constant bell sound spawning</li>
144145
</ul>
145146
</description>
146147
</release>

src/contour/ui.template/Terminal.qml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ ContourTerminal
185185

186186
function playBell(volume) {
187187
if (bellSoundEffect.playbackState === MediaPlayer.PlayingState)
188-
bellSoundEffect.stop();
188+
return;
189189

190190
if (bellSoundEffect.audioOutput)
191191
// Qt 6 solution to set the volume

0 commit comments

Comments
 (0)