()
| 310 | const inputBuffer = Buffer(5000); |
| 311 | |
| 312 | const ChatButton = () => { |
| 313 | ImGui.PushItemWidth(-80, () => { |
| 314 | if (ImGui.InputText(zh ? "描述需求" : "Desc", inputBuffer, [InputTextFlag.EnterReturnsTrue])) { |
| 315 | const command = inputBuffer.text; |
| 316 | if (command !== '') { |
| 317 | logs = []; |
| 318 | logs.push(`User: ${command}`); |
| 319 | root.emit('Input', command); |
| 320 | } |
| 321 | inputBuffer.text = ""; |
| 322 | } |
| 323 | }); |
| 324 | }; |
| 325 | |
| 326 | const windowsFlags = [ |
| 327 | WindowFlag.NoMove, |
no test coverage detected