Enable word wrap in feedback modal (#23893)

https://zed-industries.slack.com/archives/C04S7CZPF4M/p1738151539115169

Release Notes:

- Enable word wrap in the feedback modal
This commit is contained in:
Conrad Irwin 2025-01-31 00:13:53 -07:00 committed by GitHub
parent f2b3f3a9ab
commit 0ad2aeb2e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View file

@ -194,6 +194,7 @@ impl FeedbackModal {
editor.set_show_inline_completions(Some(false), window, cx);
editor.set_vertical_scroll_margin(5, cx);
editor.set_use_modal_editing(false);
editor.set_soft_wrap();
editor
});