SmartClient Version: SNAPSHOT_v12.1d_2019-05-27/AllModules Development Only (built 2019-05-27)
Firefox on OSX
Hello, when I click on buttons (or anyway I put focus on them), I see the cursor blinking at the start of the text.
In tabs, it happens only without icon:

In IButtons, it happens with icons also:

Firefox on OSX
Hello, when I click on buttons (or anyway I put focus on them), I see the cursor blinking at the start of the text.
In tabs, it happens only without icon:
Code:
isc.TabSet.create({
ID: "topTabSet",
autoDraw: true,
tabBarPosition: "top",
width: 400,
height: 200,
tabs: [
{title: "Blue",
pane: isc.Img.create({autoDraw: false, width: 48, height: 48, src: "pieces/48/pawn_blue.png"})},
{title: "Green", icon: "pieces/16/pawn_green.png", iconSize:16,
pane: isc.Img.create({autoDraw: false, width: 48, height: 48, src: "pieces/48/pawn_green.png"})}
]
});
Code:
isc.IButton.create({
autoDraw: true,
icon: "pieces/16/pawn_blue.png",
title: "foo"
});
Comment