1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-26 09:28:07 +02:00
audacity/src/widgets/MeterPanelBase.cpp
2019-06-16 01:24:29 -04:00

23 lines
489 B
C++

/**********************************************************************
Audacity: A Digital Audio Editor
MeterPanelBase.cpp
Paul Licameli split from Meter.cpp
**********************************************************************/
#include "MeterPanelBase.h"
MeterPanelBase::~MeterPanelBase()
{
}
bool MeterPanelBase::s_AcceptsFocus{ false };
auto MeterPanelBase::TemporarilyAllowFocus() -> TempAllowFocus {
s_AcceptsFocus = true;
return TempAllowFocus{ &s_AcceptsFocus };
}