diff options
author | Luis Ibanez <luis.ibanez@kitware.com> | 2001-06-12 12:34:29 (GMT) |
---|---|---|
committer | Luis Ibanez <luis.ibanez@kitware.com> | 2001-06-12 12:34:29 (GMT) |
commit | d0614d75ea2fa259bed8e48226f85b0f5553cfb5 (patch) | |
tree | 55b6f78b2428f0640c82695476cf21266e6d17b6 /Source/FLTKDialog/FLTKPropertyItemRow.cxx | |
parent | 522ff0204a48774d42f9a1de4d2ab9530f0f6994 (diff) | |
download | CMake-d0614d75ea2fa259bed8e48226f85b0f5553cfb5.zip CMake-d0614d75ea2fa259bed8e48226f85b0f5553cfb5.tar.gz CMake-d0614d75ea2fa259bed8e48226f85b0f5553cfb5.tar.bz2 |
ENH: Paths are now expanded for environment variables and made absolute.
The binary directory is created if it doesn't exist.
Diffstat (limited to 'Source/FLTKDialog/FLTKPropertyItemRow.cxx')
-rw-r--r-- | Source/FLTKDialog/FLTKPropertyItemRow.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/FLTKDialog/FLTKPropertyItemRow.cxx b/Source/FLTKDialog/FLTKPropertyItemRow.cxx index c55cd8b..e5607a4 100644 --- a/Source/FLTKDialog/FLTKPropertyItemRow.cxx +++ b/Source/FLTKDialog/FLTKPropertyItemRow.cxx @@ -26,7 +26,8 @@ PropertyItemRow::PropertyItemRow( PropertyItem * pItem ) Fl_Tile * group = new Fl_Tile(0,0,nameWidth+textWidth,rowHeight,""); - group->parent()->size( nameWidth + textWidth , 100 ); + // Make the parent Fl_Pack widget at least a row wide. + group->parent()->size( nameWidth + textWidth , rowHeight ); Fl_Button * name = new Fl_Button( firstColumn, 0, nameWidth, rowHeight, |