You've already forked lazarus-ccr
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:
@ -2747,7 +2747,9 @@ begin
|
|||||||
{animated scroll}
|
{animated scroll}
|
||||||
if FActiveFolder > -1 then begin
|
if FActiveFolder > -1 then begin
|
||||||
{play sound}
|
{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);
|
PlaySound(FSoundAlias, psmAsync);
|
||||||
(*
|
(*
|
||||||
if FPlaySounds and (FSoundAlias > '') then begin
|
if FPlaySounds and (FSoundAlias > '') then begin
|
||||||
|
Reference in New Issue
Block a user