Rebol tips for view, layout, GLayout, LiquidGL and RebGUI

; execute the following in a Rebol console and the new view will not want to close
>>view/new layout [banner "Cool!"]
; the answer is to enter
>>unview
; the problem arises because of the refinement /new
; so try
>>view layout [banner "Great!"]
; now it closes fine
; use the refinement /new with a view when opening a child view
; in the first case, the COOL view became a child of the console itself

Leave a Reply

You must be logged in to post a comment.