add missing file
This commit is contained in:
parent
8ae5a82c99
commit
a8dd5e649d
17
Source/CrossPlatformUtilsLinux.cpp
Normal file
17
Source/CrossPlatformUtilsLinux.cpp
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
// SPDX-License-Identifier: GPLv3-or-later WITH Appstore-exception
|
||||||
|
// Copyright (C) 2020 Jesse Chappell
|
||||||
|
|
||||||
|
|
||||||
|
#include "CrossPlatformUtils.h"
|
||||||
|
|
||||||
|
#include "../JuceLibraryCode/JuceHeader.h"
|
||||||
|
|
||||||
|
#if JUCE_LINUX
|
||||||
|
|
||||||
|
|
||||||
|
void getSafeAreaInsets(void * component, float & top, float & bottom, float & left, float & right, int & notchPos)
|
||||||
|
{
|
||||||
|
top = bottom = left = right = notchPos = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user