Re: [Iup-users] Changing tab title colors, Windows 3.25

2018-08-20 Thread Antonio Scuri
Hi, Tab color control in Windows are very limited. I recommend using IupFlatTabs that you will have a much better control over the colors, without affecting the children. Best, Scuri Em dom, 19 de ago de 2018 às 22:42, John Huttley escreveu: > Hi Team, > I want to change the "AA"

Re: [Iup-users] 答复: 答复: Debugger couldn't locate the lua source code for iup.

2018-08-20 Thread Antonio Scuri
Just committed to the SVN: - *Changed:* added "=" prefix to chunk name in iuplua_dobuffer and iuplua_dostring calls to improve debugging of *IupLua* strings. Best, Scuri Em sáb, 21 de jul de 2018 às 02:24, actboy168 escreveu: > I make a patch in attachment. > > > > I added '=' before t

Re: [Iup-users] Debugger couldn't locate the lua source code for iup.

2018-08-20 Thread actboy168
When lua_load parses a binary chunk, it ignores the chunkname in the argument and uses the chunkname in the binary chunk. E.g > load(string.dump(loadfile 'button.lua'), '=button.lua') Its chunkname is `@button.lua` instead of `=button.lua`. So bin2c.lua needs to change `loadfile(filename)` to