tvplanit: Prevent VpNavBar component editor playing sounds in design mode.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6376 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-05-03 22:17:43 +00:00
parent 6542115d09
commit 47138e4412

View File

@ -2747,7 +2747,9 @@ begin
{animated scroll}
if FActiveFolder > -1 then begin
{play sound}
if FPlaySounds and (FSoundAlias <> '') and FileExists(FSoundAlias) then
if not (csDesigning in ComponentState) and FPlaySounds and
(FSoundAlias <> '') and FileExists(FSoundAlias)
then
PlaySound(FSoundAlias, psmAsync);
(*
if FPlaySounds and (FSoundAlias > '') then begin