blob: c332acc0ca1a2b04010ce1d82ca8adf2389c8fc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "editor_scale.h"
#include "os/os.h"
static bool editor_hidpi=false;
void editor_set_hidpi(bool p_hidpi) {
editor_hidpi=p_hidpi;
}
bool editor_is_hidpi() {
return editor_hidpi;
}
|