mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 03:18:37 +08:00
684a1207c0
also added hidpi support to project manager
15 lines
194 B
C++
15 lines
194 B
C++
#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;
|
|
}
|