feat(client): update elements sizes

This commit is contained in:
2024-05-30 16:14:03 +03:00
parent 16a5adefad
commit d6af58875d
6 changed files with 30 additions and 101 deletions

View File

@@ -11,7 +11,7 @@
"HAXE_STD_PATH": "/home/shmyga/sdk/haxe/4.2.5/std"
}
},
"haxe.configurations": [["build/app/flash/haxe/debug.hxml"]],
"haxe.configurations": [["build/client/flash/haxe/debug.hxml"]],
"haxe.displayServer": {
"arguments": [
//"-v"
@@ -25,22 +25,22 @@
"version": "0.2.0",
"configurations": [
{
"args": ["app:flash:test"],
"name": "app:flash:test",
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"request": "launch",
"skipFiles": ["<node_internals>/**"],
"type": "node"
},
{
"args": ["server:cpp:test"],
"name": "server:cpp:test",
"args": ["${input:task}"],
"name": "${input:task}",
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"request": "launch",
"skipFiles": ["<node_internals>/**"],
"type": "node"
}
],
"compounds": []
"compounds": [],
"inputs": [
{
"id": "task",
"description": "Please enter task name",
"options": ["client:flash:test", "server:cpp:test", "generate"],
"type": "pickString"
}
]
}
}