We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d527447 + 485b340 commit 25e4201Copy full SHA for 25e4201
metainfo.xml
@@ -141,6 +141,7 @@
141
<li>Fixes bell sound in spawned window in same process (#1515)</li>
142
<li>Fixes status line crush (#1511)</li>
143
<li>Fixes application window icon on (KDE) Wayland</li>
144
+ <li>Improves handling of constant bell sound spawning</li>
145
</ul>
146
</description>
147
</release>
src/contour/ui.template/Terminal.qml.in
@@ -185,7 +185,7 @@ ContourTerminal
185
186
function playBell(volume) {
187
if (bellSoundEffect.playbackState === MediaPlayer.PlayingState)
188
- bellSoundEffect.stop();
+ return;
189
190
if (bellSoundEffect.audioOutput)
191
// Qt 6 solution to set the volume
0 commit comments