Browse Source

Meter: Fix GetLuminance wxWidgets version dependency

Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Reference-to: https://github.com/tenacityteam/tenacity/pull/678
pull/684/head
Mart Raudsepp 1 year ago
committed by GitHub
parent
commit
0665614b85
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/widgets/Meter.cpp

2
src/widgets/Meter.cpp

@ -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

Loading…
Cancel
Save