vscode
vscode copied to clipboard
Using conpty.dll 1.22 in VSCode 1.98.0 will make TUI app ignoring the mouse
- VS Code Version: 1.98.0
The code is:
from textual.app import App
from textual.widgets import Button
class MyApp(App):
def on_mount(self):
self.widgets = [
Button('information'),
]
self.mount_all(self.widgets)
if __name__ == '__main__':
app = MyApp()
app.run()
After setting the "terminal.integrated.windowsUseConptyDll": true, the button of app is clickable.