Immortalin / luaforwindows

Automatically exported from code.google.com/p/luaforwindows
0 stars 0 forks source link

iup trees not expanding #67

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. run this example:

require 'iuplua'
require 'iupluacontrols'

tree = iup.tree{}

list = {
  {
    "Horse",
    "Whale";
    branchname = "Mammals"
  },
  {
    "Shrimp",
    "Lobster";
    branchname = "Crustaceans"
  },
  {
    branchname = "Birds"
  },
  branchname = "Animals"
}

iup.TreeAddNodes(tree, list)

f = iup.dialog{tree; title = "Tree Test"}

f:show()

iup.MainLoop()

What is the expected output? What do you see instead?:
Nodes are displaying, but won't expand when i click on them

What version of the product are you using? On what operating system?
latest luaforwindows, windows xp sp3 32bit

Please provide any additional information below.

Original issue reported on code.google.com by scratchn...@gmail.com on 23 Feb 2013 at 2:38

Attachments:

GoogleCodeExporter commented 9 years ago
Yes, I got the same problem

Original comment by sun...@gmail.com on 7 Jul 2013 at 3:05