mirror of
https://github.com/godotengine/godot.git
synced 2025-02-23 23:15:07 +08:00
Merge pull request #8986 from Hinsbart/cursor_warning
X11: Turn warning about not finding cursor theme into verbose output.
This commit is contained in:
commit
74a0bed3d2
@ -336,7 +336,9 @@ void OS_X11::initialize(const VideoMode &p_desired, int p_video_driver, int p_au
|
|||||||
cursor_theme = XcursorGetTheme(x11_display);
|
cursor_theme = XcursorGetTheme(x11_display);
|
||||||
|
|
||||||
if (!cursor_theme) {
|
if (!cursor_theme) {
|
||||||
WARN_PRINT("Could not find cursor theme");
|
if (is_stdout_verbose()) {
|
||||||
|
print_line("XcursorGetTheme could not get cursor theme");
|
||||||
|
}
|
||||||
cursor_theme = "default";
|
cursor_theme = "default";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user