summaryrefslogtreecommitdiffstats
path: root/generic/tkPanedWindow.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-08-18 08:23:07 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-08-18 08:23:07 (GMT)
commit503873175147643759877b680b02299eeea1617f (patch)
treed176ea49da3c7ac880fbf7022952bcaca5416797 /generic/tkPanedWindow.c
parent5d56b4f852eef0293a312eaff20e8701ac54a86a (diff)
downloadtk-503873175147643759877b680b02299eeea1617f.zip
tk-503873175147643759877b680b02299eeea1617f.tar.gz
tk-503873175147643759877b680b02299eeea1617f.tar.bz2
Add missing GEOMETRY flag to -handlepad option. [Bug 1010938]
Diffstat (limited to 'generic/tkPanedWindow.c')
-rw-r--r--generic/tkPanedWindow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkPanedWindow.c b/generic/tkPanedWindow.c
index 6151dbf..ee4dc40 100644
--- a/generic/tkPanedWindow.c
+++ b/generic/tkPanedWindow.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkPanedWindow.c,v 1.13.2.5 2004/05/03 19:17:39 hobbs Exp $
+ * RCS: @(#) $Id: tkPanedWindow.c,v 1.13.2.6 2004/08/18 08:23:07 dkf Exp $
*/
#include "tkPort.h"
@@ -252,7 +252,7 @@ static Tk_OptionSpec optionSpecs[] = {
TK_OPTION_NULL_OK, 0, 0},
{TK_OPTION_PIXELS, "-handlepad", "handlePad", "HandlePad",
DEF_PANEDWINDOW_HANDLEPAD, -1, Tk_Offset(PanedWindow, handlePad),
- 0, 0},
+ 0, 0, GEOMETRY},
{TK_OPTION_PIXELS, "-handlesize", "handleSize", "HandleSize",
DEF_PANEDWINDOW_HANDLESIZE, Tk_Offset(PanedWindow, handleSizePtr),
Tk_Offset(PanedWindow, handleSize), 0, 0, GEOMETRY},