SmartClient Version: SNAPSHOT_v13.1d_2024-08-05/AllModules Development Only (built 2024-08-05)
Hello, please try this test case:
You'll see this:

here, in particular the Header_Trash and Cancel icon seem a tad too big (actually with the Close icon it is even more noticeable).
but if I use an iconWidth/height:
then the Accept icon sits too low and too close to the title:

I actually noticed it while trying to add icons to the buttons of the pickerNavigationBar, at first I thought there was some problem with the autoChild NavigationButtons, but the I saw that happens also with IButtons.
Speaking of the NavigationBar buttons, it seems that che chevron_left of the navBackButton doesn't resize with different skin densities.
Hello, please try this test case:
Code:
isc.HLayout.create({
membersMargin: 20,
members: [
isc.IButton.create({
autoFit: true,
title: "Accept",
icon: "Accept"
}),
isc.IButton.create({
autoFit: true,
title: "Edit",
icon: "Header_Trash"
}),
isc.IButton.create({
autoFit: true,
title: "Cancel",
icon: "Cancel"
})
]
});
here, in particular the Header_Trash and Cancel icon seem a tad too big (actually with the Close icon it is even more noticeable).
but if I use an iconWidth/height:
Code:
isc.HLayout.create({
membersMargin: 20,
members: [
isc.IButton.create({
autoFit: true,
title: "Accept",
iconWidth:12,
iconHeight:12,
icon: "Accept"
}),
isc.IButton.create({
autoFit: true,
title: "Edit",
iconWidth:12,
iconHeight:12,
icon: "Header_Trash"
}),
isc.IButton.create({
autoFit: true,
title: "Cancel",
iconWidth:12,
iconHeight:12,
icon: "Cancel"
})
]
});
I actually noticed it while trying to add icons to the buttons of the pickerNavigationBar, at first I thought there was some problem with the autoChild NavigationButtons, but the I saw that happens also with IButtons.
Speaking of the NavigationBar buttons, it seems that che chevron_left of the navBackButton doesn't resize with different skin densities.
Comment