S
Sylvain
Guest
Hello,
I'm trying to adapt a code working in 5.1.41 to 6.1.3 .
This code opens a menu displaying a list of layers that user may click
to start a callback.
In 5.1 it is OK, I see the layer color, fliing and its name and
purpose.
In 6.1, the same code produces a small square icon, containing what
I've describe before.
This square is so small that we can't read the text and it is really
painful.
I do not see anywhere in the doc how to modify my code for this
issue .. Neither in sourcelink.
Here's an example :
d_cv = geGetEditCellView()
d_tf = techGetTechFile(d_cv)
l_layers = list(list("metal1" "drawing") list("metal1" "pin"))
l_choices = hiMakeLPChoiceList(d_tf l_layers)
foreach(mapcar icon l_choices
menuItem = hiCreateMenuItem(
?name gensym()
?itemText ""
?itemIcon icon
?callback "myCallback()"
)
) ; ** foreach mapcar **
Has anyone ever seen this behaviour ?
Thanks in advance,
Sylvain
I'm trying to adapt a code working in 5.1.41 to 6.1.3 .
This code opens a menu displaying a list of layers that user may click
to start a callback.
In 5.1 it is OK, I see the layer color, fliing and its name and
purpose.
In 6.1, the same code produces a small square icon, containing what
I've describe before.
This square is so small that we can't read the text and it is really
painful.
I do not see anywhere in the doc how to modify my code for this
issue .. Neither in sourcelink.
Here's an example :
d_cv = geGetEditCellView()
d_tf = techGetTechFile(d_cv)
l_layers = list(list("metal1" "drawing") list("metal1" "pin"))
l_choices = hiMakeLPChoiceList(d_tf l_layers)
foreach(mapcar icon l_choices
menuItem = hiCreateMenuItem(
?name gensym()
?itemText ""
?itemIcon icon
?callback "myCallback()"
)
) ; ** foreach mapcar **
Has anyone ever seen this behaviour ?
Thanks in advance,
Sylvain