enthought / enthought/traitsui

Copied text is lost after dialog is closed

Open
#732 7 comments 0 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
306
Forks
99
PR merge metrics
No merged PRs in 30d

Description

To reproduce (at least with qt backend):

1. Run the code below
2. Copy the text to clipboard
3. Close the traits dialog
4. Try to paste
5. Be sad

```python
from traits.api import HasTraits, Str
from traitsui.api import Item, View

class Foo(HasTraits):
x = Str('why hello there')
traits_view = View(Item('x'))

if __name__ == '__main__':
Foo().configure_traits()
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.