Preset Browser / List Area object is masking the buttons
-
Hi everyone,
I am currently working on a preset browser using the built-in browser, and a custom look and feel.
I had to reposition the Lista Area to fit the look of the GUI, so I used ListAreaOffset in Y-axis.
However, this way it pushed the List Area to the top of the Add, Rename, and Delete Buttons, and now I can not use these buttons anymore. They are visible, but not responding. I tried to find where can I compensate the Y offset by the size of the List Area object, but without success.Is there any way to change the size of the column objects manually, or move the add/rename/delete buttons further down? I would like to avoid building the whole thing again with custom panels.
I hope I don't just overlook an obvious feature, but I could not locate the solution yet.
Thanks in advance!
Gábor -
In the data property there is a
ButtonsInsideBorder
property, set this to true. There is also anEditButtonOffset
property that might be useful. -
@d-healey Thanks!
"ButtonsInsideBorder" did not change anything in this regard unfortunately.
"The EditButtonOffset" works fine, but under the offset of -10, the buttons are getting outside of the border of the floating tile, and I would need an offset of -58. -
@Gabor-K Can you post a snippet so we can see exactly what you need?
-
@d-healey
I recreated the same issue in an empty project.
You can not click on the add/rename/delete buttons, because the list area columns are masking them due to the "ListAreaOffset" settings I've added.I would like to somehow resize the columns to make them smaller on the vertical axis and this way reveal the buttons below.
HiseSnippet 961.3ocsV0saaaCElxIJX1cacEnO.B8pT.2.47WC1tnIN1dvnMoFwYcCXXnfQ53HhHQJPRkTihdydB1iwtcuA8QZ20KSOTTVRNwMqw.SWXqyOejeme3gZjTD.JkPRbZd5zTf37stimx0QGFQYbxvdDmu28HpRCROqptSSoJEDRbbV4mMJbZtJI+4eeQWZLkG.UpHj2HXAvqXILck1Q6+RVb7.ZHbJKol2au+v.A+PQrHC4yJt9jTZvEzygioF2Z3RbVqeHSKji0TMnPe5JBmNNRbE25+aXJ1YwfQnCYLtPV0jCiXwgilEqJBwY0QUQ9J1H+wtGwBYk5qx.+PtAuJD0yANMtKJ04dPImZTZUKkdj63.IKUWYwvmG3NjiEjITLUWmJVeINez8PA5.WuQB8BXfDEJAr9t99s8ved5OMIiGnYBtmferPCulu9Sa89VMa8gVd2zzjIKzlYajh3XPtPylpq7t.tNOK4LP116RZbFT5HF9ymSW6qKmFXi5ZNJ3C4L8qSgB4Ah3PStx79sq.jhzF91uLrGUSMEkBcneofTyLzwoGbI1UaKQMc6ApKzhzbeSREbyJ37.cQOksnLHVP0L94mxPZyPF7P25p5PdW8CMSqKTP.6t8P2QRPA5tRwUJPRN67YGWZtF56mL.XZHoR6+b8ec87Z2rv47m7vrwe2v88s77dhI0MldIzMSqE7m7idZYFzdlk9uKkxUXETcfBWprDiGSnwpJWxSvxEC2zIotEBSk15upNfJ0XyGFvnM+RLGDFt3s3DfiiJVrsdPLn+B1FPuTHwLjY9ybLrfYCwvND5JjXvUG6wYI1Dgg6akqxJ+qrPczIX8UfF9cTumm+Facim12S8n5+HeOdESoOPBzxTSwNXAtydsqK5WByRsSDWMhFFhcd2Dn+W.2XfJCh5RkcEY7PUIrNaW35t1+1bmB4M2qD6QBYQNuBbwpV1mcSKypF2xZqOPtxjXKOd7w+b+HfcdjttFxsmihSvEgYwT87i0M2eUX.6pmaVpYfIVz0Sqe+18XVu+cNq+qkhOxcDSGDsXN1XAbDmX8+AGKtg76b6OYBDnqH3ptC9sk85v+is+DQlY73QTsjgSGcwyZiwoWA.t6bNDiKtqSCy.RqruQ1jAFC7vbgqwmBicLxNEF6LyHIgFHEuMvdaj4N3uIWCxId9mbzD+1GT1qCI+FJDmq+F9jD7yAdaPfI7eFdQxhwr4RfYqk.y1KAlcVBL6tDXd9RfYu6Di4KwNHSKRrGGPEi5meGliSeNE6rx6BIeFOc45O.
-
@Gabor-K How about this. Instead of setting the offset to 58, enable the
ShowNotes
property. This will add spacing above the columns. You can then place a panel over this extra space and style it however you like.That's what I did with my preset browser
-
@Gabor-K You can also set H to -58:
"ListAreaOffset": [ 0, 58, 0, -58 ],
-
@ustk Oh yeah I forgot about that. I'm using
[0, 5, 0, -15]
for mine. -
Wow that looks nice, thanks @d-healey !
-
@ustk Oh man, you saved my day. How could I have overlooked this? Thanks a lot!