vscode icon indicating copy to clipboard operation
vscode copied to clipboard

Using conpty.dll 1.22 in VSCode 1.98.0 will make TUI app ignoring the mouse

Open python-and-novella opened this issue 9 months ago • 0 comments

  • 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.

python-and-novella avatar Mar 07 '25 02:03 python-and-novella