Scaling the floating tile preset browser ?
-
@dalart Changing the width and height of the floating tile with change the size of the preset browser. Not sure about the text though.
-
@d-healey Yeah maybe that is what is throwing off the scaling of it, the text size in the preset list doesnt seem to change even after choosing a font and the size in the details panel.
-
Looking for a way to change the category and preset list items' font size, is this possible ?
-
Will setting a global font with the desired size change this ? If so, how is global font set up in a project ?
-
Bump, anyone have any insight ?
-
Do I have to edit the C++ files to set text size for the browser ?
-
Bump, Jeez.
-
Did you try the global font setting? That's the only thing I can think of that might work without editing the HISE source code.
-
@d-healey I asked in this thread about a week ago how to set this up but the post just keeps getting buried.
-
@dalart
Engine.setGlobalFont()
-
I might add a few more options for customizability on scripting level (like hiding the favourites icons is reasonable), but this is just a road without end for me - it will take just a few weeks until the next dude comes around asking for another thing - if you really want full control over the appearance, you have to go full C++.
-
@christoph-hart I primarily just wanted to control the text size for items in the list like you are able to with the custom user preset example you wrote. Just cannot figure out how on floating tile preset browser. Maybe I ask question wrong.
-
Hi,
Is there still no way to change the font size in the list?
That's strange in this case, I don't see why we can change the size of everything but this...
I think we don't need to customize everything, as you said, Christoph, if someone wants full customisation he can rely on C++ (at least for the ones who can handle it)
But a general resizing factor, or at least including the list in the font size would be so helpful for the ones who can't code in C++ -
@Dalart said in Scaling the floating tile preset browser ?:
Will setting a global font with the desired size change this ? If so, how is global font set up in a project ?
Usually so:
Engine.loadFontAs("{PROJECT_FOLDER}Fonts/Arial.ttf", "Arial-Regular"); Engine.setGlobalFont("Arial-Regular");
-
@Christoph-Hart A / B comparsion options would be awesome too. (like Waves) - it can be optional for those doesn't want to use it
-
@remarkablex You can kind of script that yourself already.
-
@d-healey Where can I find that script?
-
-
@orange said in Scaling the floating tile preset browser ?:
@d-healey Where can I find that script?
In your mind :p
I'll see if it's possible tomorrow
-
@d-healey I think it can be done by restoring all of the settings in the RAM temporarily for swapable A/B comparsion.
I made a similar thing for a simple situation; by creating non-visible knob or other gui elements to restoring and getting data then.
But we can't make this way for all of the situations and plugins. There should be much more convenient way to do that.
Maybe creating a temporary preset file (but shouldn't be seen in the preset browser) in the AppData path or something like that.