diff options
author | fvogel <fvogelnew1@free.fr> | 2014-11-06 21:45:40 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2014-11-06 21:45:40 (GMT) |
commit | 047316eaff14d14c10caa5f0742c426f3963c60b (patch) | |
tree | e4a393b7260963272df305f00fdb7d06a7a43562 /tests/scale.test | |
parent | c58fbb3f9791fad348f5441c96d26b1015e0098c (diff) | |
download | tk-047316eaff14d14c10caa5f0742c426f3963c60b.zip tk-047316eaff14d14c10caa5f0742c426f3963c60b.tar.gz tk-047316eaff14d14c10caa5f0742c426f3963c60b.tar.bz2 |
Added test case for bug [3529885fff]bug_3529885fff
Diffstat (limited to 'tests/scale.test')
-rw-r--r-- | tests/scale.test | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/scale.test b/tests/scale.test index d7ded7f..73d0f2d 100644 --- a/tests/scale.test +++ b/tests/scale.test @@ -867,6 +867,39 @@ test scale-18.3 {Scale button 2 events [Bug 787065]} \ } \ -result {0 {}} +test scale-19 {Bug [3529885fff] - Click in through goes in wrong direction} \ + -setup { + catch {destroy .s} + catch {destroy .s1 .s2 .s3 .s4} + scale .s1 -from 0 -to 100 -resolution 1 -variable x1 -digits 4 -orient horizontal -length 100 + scale .s2 -from 0 -to 100 -resolution -1 -variable x2 -digits 4 -orient horizontal -length 100 + scale .s3 -from 100 -to 0 -resolution 1 -variable x3 -digits 4 -orient horizontal -length 100 + scale .s4 -from 100 -to 0 -resolution -1 -variable x4 -digits 4 -orient horizontal -length 100 + pack .s1 .s2 .s3 .s4 -side left + update + } \ + -body { + foreach {x y} [.s1 coord 50] {} + event generate .s1 <1> -x $x -y $y + event generate .s1 <ButtonRelease-1> -x $x -y $y + foreach {x y} [.s2 coord 50] {} + event generate .s2 <1> -x $x -y $y + event generate .s2 <ButtonRelease-1> -x $x -y $y + foreach {x y} [.s3 coord 50] {} + event generate .s3 <1> -x $x -y $y + event generate .s3 <ButtonRelease-1> -x $x -y $y + foreach {x y} [.s4 coord 50] {} + event generate .s4 <1> -x $x -y $y + event generate .s4 <ButtonRelease-1> -x $x -y $y + update + list $x1 $x2 $x3 $x4 + } \ + -cleanup { + unset x1 x2 x3 x4 x y + destroy .s1 .s2 .s3 .s4 + } \ + -result {1.0 1.0 1.0 1.0} + catch {destroy .s} option clear |