You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Multiple changes to DisplayServerX11
- Travis: Change x11 to linuxbsd - SCons: Change x11 plataform to linuxbsd - Plugins: Remove ; to avoid fallthrough warning - DisplayServerX11: Implement set_icon - DisplayServerX11: Fix X11 bug when a window was erased from windows map, all the changes from that erased windows are sending to the main window - DisplayServerX11: Reorder create_window commands - DisplayServerX11: Change every Size2 to Size2i and Rect2 to Rect2i where it belongs + More X11 fixes which have been integrated directly back into reduz's original commits while rebasing the branch.
This commit is contained in:
@@ -45,11 +45,11 @@ def copy_file(src_dir, dst_dir, name):
|
||||
|
||||
|
||||
def is_desktop(platform):
|
||||
return platform in ['windows', 'osx', 'x11', 'server', 'uwp', 'haiku']
|
||||
return platform in ['windows', 'osx', 'linuxbsd', 'server', 'uwp', 'haiku']
|
||||
|
||||
|
||||
def is_unix_like(platform):
|
||||
return platform in ['osx', 'x11', 'server', 'android', 'haiku']
|
||||
return platform in ['osx', 'linuxbsd', 'server', 'android', 'haiku']
|
||||
|
||||
|
||||
def module_supports_tools_on(platform):
|
||||
|
||||
Reference in New Issue
Block a user