summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2016-01-06 20:28:27 (GMT)
committerfvogel <fvogelnew1@free.fr>2016-01-06 20:28:27 (GMT)
commit3c29497582459e3551edc32afd714b59494f26ae (patch)
treee722c2cc7c734b1e6a496ddaf9548197537d28f8 /tests
parenta596227ea0c8011ae343a0bb4b438e6bd12ed03b (diff)
parent13cdecd256069109fe277a62a153cb31b3a1348b (diff)
downloadtk-3c29497582459e3551edc32afd714b59494f26ae.zip
tk-3c29497582459e3551edc32afd714b59494f26ae.tar.gz
tk-3c29497582459e3551edc32afd714b59494f26ae.tar.bz2
Fixed bug [3102228] - <<ListboxSelect>> doesn't fire when selection lost
Diffstat (limited to 'tests')
-rw-r--r--tests/listbox.test15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/listbox.test b/tests/listbox.test
index b01652b..62b8cc1 100644
--- a/tests/listbox.test
+++ b/tests/listbox.test
@@ -2193,6 +2193,21 @@ test listbox-31.1 {<<ListboxSelect>> event} -setup {
unset -nocomplain res
} -result {0 2 1}
+test listbox-31.2 {<<ListboxSelect>> event on lost selection} -setup {
+ destroy .l
+} -body {
+ pack [listbox .l -exportselection true]
+ update
+ bind .l <<ListboxSelect>> {lappend res [list [selection own] [%W curselection]]}
+ .l insert end a b c
+ focus -force .l
+ event generate .l <1> -x 5 -y 5 ; # <<ListboxSelect>> fires
+ selection clear ; # <<ListboxSelect>> fires again
+ set res
+} -cleanup {
+ destroy .l
+} -result {{.l 0} {{} {}}}
+
resetGridInfo
deleteWindows
option clear