We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7c8201 commit b6bf608Copy full SHA for b6bf608
tests/textBTree.test
@@ -949,6 +949,18 @@ test btree-14.2 {TkTextIsElided} -setup {
949
} -cleanup {
950
destroy .t
951
} -result {1.0}
952
+test btree-14.3 {Bug [bdd1f64523] - switch the -elide state of a tag} -setup {
953
+ destroy .t
954
+ text .t
955
+} -body {
956
+ .t insert end "text_ellipse" tag_ellipse
957
+ .t insert end "text_hidden" tag_hidden
958
+ .t tag configure tag_hidden -elide 1
959
+ .t tag configure tag_ellipse -elide 1
960
+ .t tag configure tag_hidden -elide 0 ; # used to crash (assertion failed)
961
+} -cleanup {
962
963
+} -result {}
964
965
test btree-15.1 {rebalance with empty node} -setup {
966
0 commit comments