Fix DisplayServer.has_feature()
claiming X11 has native icon support
Native icons are not supported by the X11 DisplayServer, unlike Windows and macOS.
This commit is contained in:
parent
2b505b74b9
commit
82a575dff4
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ bool DisplayServerX11::has_feature(Feature p_feature) const {
|
||||||
case FEATURE_WINDOW_TRANSPARENCY:
|
case FEATURE_WINDOW_TRANSPARENCY:
|
||||||
//case FEATURE_HIDPI:
|
//case FEATURE_HIDPI:
|
||||||
case FEATURE_ICON:
|
case FEATURE_ICON:
|
||||||
case FEATURE_NATIVE_ICON:
|
//case FEATURE_NATIVE_ICON:
|
||||||
case FEATURE_SWAP_BUFFERS:
|
case FEATURE_SWAP_BUFFERS:
|
||||||
#ifdef DBUS_ENABLED
|
#ifdef DBUS_ENABLED
|
||||||
case FEATURE_KEEP_SCREEN_ON:
|
case FEATURE_KEEP_SCREEN_ON:
|
||||||
|
|
Loading…
Reference in a new issue