hi Anton. I'm sorry, it still seems like a bug to me.
The documentation says:

"TAB skips forward in the current direction (across or
below) to the next tab position."

So if you have the following code:  

rebol [] 
view layout [ 
     tabs 40  ;sets tab space to 40 pixels.
     field "Field 1" ;displays field 1 with no tab
     tab            ; tab 40 spaces below field 1
     field "Field 2" ;display field 2
     tab          ;tab 40 spaces below field 2
     field "Field 3"  ;display field 3
]
But it does not seem to work this way. Instead it
seems like there is 80pixels between field 1 and
field2 and 40 pixels between field 2 and field 3. It
doesn't seem to make sense to me...

rishi
 ]

--- Anton <[EMAIL PROTECTED]> wrote:
> Yes it does.
> If you put a tab before the first field,
> it will work:
> 
>  view layout [tabs 40 tab field tab field tab field]
> 
> In your example the first field is not tab aligned,
> but the second and third are.
> 
> Anton.
> 
> > tab keyword doesn't seem to function properly when
> > used vertically:
> > 
> > Rebol []
> > 
> > view layout [ 
> >     tabs 40
> >     field "Field 1"
> >     tab
> >     field "Field 2"
> >     tab
> >     field "Field 3"
> > ]
> > 
> > Why doesn't the tab between field 2 and field 3
> show
> > up? 
> 
> 
> -- 
> To unsubscribe from this list, please send an email
> to
> [EMAIL PROTECTED] with "unsubscribe" in the 
> subject, without the quotes.
> 


__________________________________________________
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/
-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to