Fix high DPI check in 0437835b

This commit is contained in:
Cameron Gutman 2020-02-08 18:47:59 -08:00
commit 505050e936
4 changed files with 68 additions and 2 deletions

View file

@ -3,3 +3,8 @@
#define THROW_BAD_ALLOC_IF_NULL(x) \
if ((x) == nullptr) throw std::bad_alloc()
namespace WMUtils {
bool isRunningX11();
bool isRunningWayland();
bool isRunningWindowManager();
}