How to properly format Genie Builder

hi again!

I am new to Julia and I am using GenieBuilder to build a GUI.

At the moment I am having trouble with the size of the text forms.

Here is a screenshot of a very simple program to calculate mass flow and power. I can not make the font size bigger.

I cant figure out the way to remove the decimals from the variable on the right either or to display the variables inside a string, it says error the variable is not defined.

any tips? thank you!

I’ve never used Genie Builder but if that 166.47… number is some variable in your model which you are printing you could do rounded_variable = round(that_variable, digits = 2) (or however many digits you need) and then show rounded_variable instead?

1 Like

Thanks! that does solve the decimals problem :blush: