org-table: Fix text input becoming invisible in some cases

* lisp/org-table.el (org-table--separator-space-pre): Make the
separator space non-sticky.  Otherwise, typing text into shrunk table
made the text invisible.
This commit is contained in:
Ihor Radchenko 2024-11-22 17:40:39 +01:00
parent 87863b9ec4
commit b004e99613
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
1 changed files with 1 additions and 1 deletions

View File

@ -586,7 +586,7 @@ This works for both table types.")
"Match a reference that needs translation, for reference display.")
(defconst org-table--separator-space-pre
(propertize " " 'display '(space :relative-width 1))
(propertize " " 'display '(space :relative-width 1) 'rear-nonsticky t)
"Space used in front of fields when aligning the table.
This space serves as a segment separator for the purposes of the
bidirectional reordering.