mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
fix: correct device key reference in LevelControl property
This commit is contained in:
parent
4252e9c8e6
commit
830e207ea7
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ public class LevelControlListItem : AudioControlListItemBase
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
if (_levelControl == null)
|
if (_levelControl == null)
|
||||||
_levelControl = DeviceManager.GetDeviceForKey(ParentDeviceKey) as IBasicVolumeWithFeedback;
|
_levelControl = DeviceManager.GetDeviceForKey(DeviceKey) as IBasicVolumeWithFeedback;
|
||||||
return _levelControl;
|
return _levelControl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue