1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-29 15:19:44 +02:00

Meter: Fix GetLuminance wxWidgets version dependency

Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Reference-to: https://github.com/tenacityteam/tenacity/pull/678
This commit is contained in:
Mart Raudsepp 2021-11-23 22:15:00 +02:00 committed by GitHub
parent 697c0e764c
commit 0665614b85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -473,7 +473,7 @@ void MeterPanel::OnErase(wxEraseEvent & WXUNUSED(event))
static double GetColourLuminance(wxColour color)
{
#if wxCHECK_VERSION(3, 1, 0)
#if wxCHECK_VERSION(3, 1, 3)
return color.GetLuminance();
#else
// Standard RGB to YIQ conversion for the luma (Y) part, used also by wx3.1