Hi there,
Showing a prompt on density medium with skin Tahoe does show a small visual glitch.
The white space in the shown window does not "fill" the whole window, or the border of the window might be too big.
Tahoe on Medium:

Version: SmartClient_v111p_2017-07-23_Pro
Browser: All Browsers
Skin: Tahoe
Density: Medium
Code for reproduction:
Best regards
Showing a prompt on density medium with skin Tahoe does show a small visual glitch.
The white space in the shown window does not "fill" the whole window, or the border of the window might be too big.
Tahoe on Medium:

Version: SmartClient_v111p_2017-07-23_Pro
Browser: All Browsers
Skin: Tahoe
Density: Medium
Code for reproduction:
Code:
isc.Canvas.create({
width: "100%",
height: "100%",
backgroundColor: "red;"
});
isc.Button.create({
name: "test",
top: 0,
left: 0,
click: function(){
isc.showPrompt("Loading...");
}});

Comment