Hi,
Our PB application is using a slightly modified Flat Design Grey theme, but we noticed it's difficult to resize windows due to how thin the borders are: You have to be extremely precise for the mouse pointer to change to indicate that you can resize it. My guess would be to increase the thickness of borders for windows in the theme.json file, but I'm not sure how to do that. I tried a couple shots at it based off something I found on the web, but when I put it into my theme.json, it crashes the PowerBuilder 2019 R3 IDE. Here was the snippet I was trying to add to see what it did:
"border": [{
"show": true,
"color": { "solid": { "color": "#FF0003" } },
"radius": 10
}]
I was putting this at the beginning of the "window" section, just before the "drawing" part:
"window":
{
"border": [{
"show": true,
"color": { "solid": { "color": "#FF0003" } },
"radius": 10
}],
"drawing":true,
"background-color":"#FFFFFF",
Any ideas on how this should be done?
Thanks,
Tom George