Archicad C++ API
About Archicad add-on development using the C++ API.
SOLVED!

Avoid frame around palette buttons

gehairing
Participant

Hello everybody,

 

I have an Archicad plugin that contains a small toolbar.
For this toolbar i use the classic 'GDLG' dialog definition.
By default this makes framed buttons.

 

What should i do to avoid having these frames around my icons ?

Thanks,

 

Georges


ArchicadDevForumSampleImage.jpg
1 ACCEPTED SOLUTION

Accepted Solutions
Solution
Viktor Kovacs
Graphisoft
Graphisoft

Use the noFrame flag in your grc file. For example:

/* [  3] */ IconButton            325    2   23   23    32100 noFrame
/* [  4] */ IconButton            350    2   23   23    32101 noFrame

 

View solution in original post

2 REPLIES 2
Solution
Viktor Kovacs
Graphisoft
Graphisoft

Use the noFrame flag in your grc file. For example:

/* [  3] */ IconButton            325    2   23   23    32100 noFrame
/* [  4] */ IconButton            350    2   23   23    32101 noFrame

 

Thanks a lot Viktor 🙂