aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_scale.cpp
blob: 597d97208df7b759f654be384ea81663cc1397a1 (plain) (blame)
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;
}