summaryrefslogtreecommitdiffstats
path: root/tests/panedwindow.test
diff options
context:
space:
mode:
authorhobbs <hobbs>2003-07-17 00:37:03 (GMT)
committerhobbs <hobbs>2003-07-17 00:37:03 (GMT)
commitf3065b5641a236c48af7dcdcf8e138b72356de98 (patch)
treee73c63e130bd70d8fcb3a8bf1b032954e2ceb46d /tests/panedwindow.test
parentba154f21db39f6326e1369e93778cad9c1d02385 (diff)
downloadtk-f3065b5641a236c48af7dcdcf8e138b72356de98.zip
tk-f3065b5641a236c48af7dcdcf8e138b72356de98.tar.gz
tk-f3065b5641a236c48af7dcdcf8e138b72356de98.tar.bz2
* generic/tkPanedWindow.c (ArrangePanes): Ensure that the last pane
* tests/panedwindow.test: shrinks instead of being clipped when resized below the reqsize. [Bug 748277] (spjuth)
Diffstat (limited to 'tests/panedwindow.test')
-rw-r--r--tests/panedwindow.test25
1 files changed, 23 insertions, 2 deletions
diff --git a/tests/panedwindow.test b/tests/panedwindow.test
index e073d4a..67a695d 100644
--- a/tests/panedwindow.test
+++ b/tests/panedwindow.test
@@ -6,7 +6,7 @@
# Copyright (c) 1998-1999 by Scriptics Corporation.
# All rights reserved.
#
-# RCS: @(#) $Id: panedwindow.test,v 1.8 2003/02/21 11:48:56 dkf Exp $
+# RCS: @(#) $Id: panedwindow.test,v 1.8.2.1 2003/07/17 00:37:03 hobbs Exp $
package require tcltest 2.1
namespace import -force tcltest::configure
@@ -1874,7 +1874,28 @@ test panedwindow-22.11 {ArrangePanes, panes with width <= 0 are unmapped} {
destroy .p .p.f1 .p.f2
set result
} {1 0}
-
+test panedwindow-22.12 {ArrangePanes, last pane shrinks} {
+ panedwindow .p -showhandle false -borderwidth 0 -sashpad 0 -sashwidth 2
+ .p add [frame .f1 -width 20 -height 20 -bg blue] \
+ [frame .f2 -width 20 -height 20 -bg red] -sticky nsew
+ place .p -width 40 -x 0 -y 0
+ update
+ set result [winfo width .f2]
+ destroy .p .f1 .f2
+ set result
+} 18
+test panedwindow-22.13 {ArrangePanes, last pane shrinks} {
+ panedwindow .p -showhandle false -borderwidth 0 -sashpad 0 -sashwidth 2 \
+ -orient vertical
+ .p add [frame .f1 -width 20 -height 20 -bg blue] \
+ [frame .f2 -width 20 -height 20 -bg red] -sticky nsew
+ place .p -height 40 -x 0 -y 0
+ update
+ set result [winfo height .f2]
+ destroy .p .f1 .f2
+ set result
+} 18
+
test panedwindow-23.1 {PanedWindowReqProc, react to slave geometry changes} {
# Basically just want to make sure that the PanedWindowReqProc is called
panedwindow .p -borderwidth 0 -sashpad 0 -sashwidth 2