Hi Isomorphic,
is it possible to always draw only vertical scrollbar and never horizontal?
Best regards
Pavo
					is it possible to always draw only vertical scrollbar and never horizontal?
Best regards
Pavo
isc.Canvas.create({
    backgroundColor:"yellow", width:400, height:400,
    overflow:"auto",
    children:[
        isc.Canvas.create({
            backgroundColor:"blue", width:400, height:400,
            overflow:"clip-h"
        })
    ]
})
isc.Canvas.create({
    backgroundColor:"yellow", width:400, height:300,
    overflow:"auto",
    children:[
        isc.Canvas.create({
            backgroundColor:"blue", width:"100%", height:400,
            overflow:"clip-h"
        })
    ]
})
Comment