Linux Screen Resolution

2018-06-13 Thread Glen Bojsza via use-livecode
Hello, I just got a new Ubuntu system and after installing Livecode the app interface is tiny. My screen resolution is 4K and all the other Ubuntu apps (libre office, firefox etc) appear normal in size? Is there a way I can change Livecode's appearance so it is useable? thanks, Glen __

Close nodes in Tree View widget

2018-06-13 Thread Andrew Bell via use-livecode
I'm working with the Tree View widget and have found that leaf nodes stay open even after the arrayData has changed. For example, if I click on leaf node 2 and 4 to open them up for further inspection but then load new arrayData those same leaf nodes are already expanded with the new data.

Re: Linux Screen Resolution

2018-06-13 Thread J. Landman Gay via use-livecode
On 6/13/18 6:37 AM, Glen Bojsza via use-livecode wrote: Hello, I just got a new Ubuntu system and after installing Livecode the app interface is tiny. My screen resolution is 4K and all the other Ubuntu apps (libre office, firefox etc) appear normal in size? Is there a way I can change Livecod

Re: PullDown Menu and the label

2018-06-13 Thread Bob Sneidar via use-livecode
NVM I figured it out. I had in the past, to avoid having a see through menu button, set the showName of the button to false in a populateForm handler. Bob S > On Jun 8, 2018, at 15:08 , Bob Sneidar via use-livecode > wrote: > > Sorry Iwas working on something else. > > I may not have exp

Re: Close nodes in Tree View widget

2018-06-13 Thread Alex Tweedly via use-livecode
I can't try it out right now - but would it be any good to set the arraydata to empty, and then load the new values you want ? That might (effectively) delete and recreate the relevant nodes, and thereby reset the status of the leaf nodes. Alex. On 13/06/2018 19:13, Andrew Bell via use-livec

Re: Linux Screen Resolution

2018-06-13 Thread Glen Bojsza via use-livecode
"put the screenPixelScale" returns 1 set the pixelScale to 2 gives an error that the pixelScale property cannot be set on this platform On Wed, Jun 13, 2018 at 3:34 PM, J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: > On 6/13/18 6:37 AM, Glen Bojsza via use-liveco

Re: Linux Screen Resolution

2018-06-13 Thread Monte Goulding via use-livecode
Hi Glen Yes our linux engine does not support pixel scaling on high dpi screens. From the looks of things we could feasibly read the environment variable `GDK_SCALE` and if set use it. Is it set for you? I have only had the briefest look at this though so there may be things I haven’t considere