summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2016-04-29 09:42:11 (GMT)
committerfvogel <fvogelnew1@free.fr>2016-04-29 09:42:11 (GMT)
commitcaca7822e575fd0943b0e41f85ffccfa37f02690 (patch)
tree515c619ded68ef15475279036fd94feeb8321b26 /tests
parentfa289415c7aaacc173ab97665af201a54eae611a (diff)
parent1e91aa73ce7aa59b5950e2a91443fdcdcba6ccaf (diff)
downloadtk-caca7822e575fd0943b0e41f85ffccfa37f02690.zip
tk-caca7822e575fd0943b0e41f85ffccfa37f02690.tar.gz
tk-caca7822e575fd0943b0e41f85ffccfa37f02690.tar.bz2
Fixed [fd3a4dc111] - <<Modified>> event is not always sent to peers
Diffstat (limited to 'tests')
-rw-r--r--tests/text.test15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/text.test b/tests/text.test
index a778b79..641635e 100644
--- a/tests/text.test
+++ b/tests/text.test
@@ -6321,6 +6321,21 @@ test text-27.14 {<<Modified>> virtual event - delete before Modified} -body {
} -cleanup {
destroy .t
} -result {thing special}
+test text-27.14a {<<Modified>> virtual event - propagation to peers} -body {
+# Bug [fd3a4dc111], <<Modified>> event is not always sent to peers
+ set ::retval 0
+ text .t -undo 1
+ .t peer create .tt
+ pack .t .tt
+ bind .t <<Modified>> {incr ::retval}
+ bind .tt <<Modified>> {incr ::retval}
+ .t insert end "This increments ::retval once for each peer, i.e. twice."
+ .t edit modified 0 ; # shall increment twice as well, not just once
+ update idletasks
+ set ::retval
+} -cleanup {
+ destroy .t .tt
+} -result {4}
test text-27.15 {<<Selection>> virtual event} -body {
set ::retval no_selection
pack [text .t -undo 1]