[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals-release/org b004e99613 2/2: org-table: Fix text input b
From: |
ELPA Syncer |
Subject: |
[elpa] externals-release/org b004e99613 2/2: org-table: Fix text input becoming invisible in some cases |
Date: |
Fri, 22 Nov 2024 12:58:28 -0500 (EST) |
branch: externals-release/org
commit b004e9961347dc0479c8dbac568515df6c9e2d43
Author: Ihor Radchenko <yantar92@posteo.net>
Commit: Ihor Radchenko <yantar92@posteo.net>
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.
---
lisp/org-table.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/org-table.el b/lisp/org-table.el
index 222bc7d965..1d16114958 100644
--- a/lisp/org-table.el
+++ b/lisp/org-table.el
@@ -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.