On 16-Mar-2002 denis wrote: > Hi, > > I hope this is the right place to ask bbtools-related > questions. >
this is the forum for all things blackbox. > if I place bbtime in the slit it becomes very large > and resizes the whole slit: > http://dstuenkel.bei.t-online.de/bbtime.jpg > > I couldn't find any line in the bbtime-config-files > which is responsible for the width. > according to the code, the label's width is the bevel width *2 + the length of the time string. Then there is a chunk of code: if (withdrawn) frame.width = 64 if (withdrawn&&label.width<64) label.width=64-2*resource->frame.bevelWidth; and there is your problem. bbtime forces itself to be 64x64 (standard window maker dock app size). My guess is Kennis was trying to make bbtime look as good under window maker as it does under blackbox. If you comment out that section in bbtime.cc all will be well for you.
