Hi there,
there seems to be a bug, that ButtonItem and MenuButtons dont have a background color anymore with the latest nightly.
This is reproducable with the latest Firefox Version 56.0.1 (64-Bit). But not in Chorme or Internet Explorer.
With the Verison v11.1p_2017-10-19 Pro with Firefox

With the latest nightly version (v11.1p_2017-10-20 Pro) with Firefox

Code:
Best regards
there seems to be a bug, that ButtonItem and MenuButtons dont have a background color anymore with the latest nightly.
This is reproducable with the latest Firefox Version 56.0.1 (64-Bit). But not in Chorme or Internet Explorer.
With the Verison v11.1p_2017-10-19 Pro with Firefox

With the latest nightly version (v11.1p_2017-10-20 Pro) with Firefox

Code:
Code:
Canvas.resizeControls(4);
Canvas.resizeFonts(2);
isc.VStack.create({
membersMargin:10,
members:[
isc.DynamicForm.create({
ID: "contactForm",
width: 400,
wrapHintText: false,
fields: [
{name:"foo", showTitle:false},
{name:"button1", startRow:false, editorType:"ButtonItem", title:"xxx"},
{name:"moo", showTitle:false},
{name:"button2", width:100, startRow:false, editorType:"ButtonItem", title:"xxx"}
]
}),
isc.HStack.create({
membersMargin:10,
members:[
isc.MenuButton.create({
title:"Menu"
}),
isc.Button.create({
title:"Button"
}),
isc.MenuButton.create({
title:"Menu 2",
autoFit:true
})
]
})
]
});
Comment