-
-
Notifications
You must be signed in to change notification settings - Fork 617
-
Hi there, in the latest releases, I have been trying to tweak font size in my .xaml file but nothing seems to happen.
I am reloading the app after a change, below font size change doesn't do anything for me.
Perhaps this is frozen into the code and is not changeable.
<Style
x:Key="QueryBoxStyle"
BasedOn="{StaticResource BaseQueryBoxStyle}"
TargetType="{x:Type TextBox}">
<Setter Property="SelectionBrush" Value="#0a68d8" />
<Setter Property="FontSize" Value="12" />
<Setter Property="Background" Value="Transparent" />
<Setter Property="Foreground" Value="#000000" />
<Setter Property="CaretBrush" Value="#000000" />
<Setter Property="Padding" Value="0,4,10,0" />
<Setter Property="Height" Value="10" />
</Style>
I have noticed this development allowing the user to customize the UI font sizes and padding, just wondering where that is at and am I doing something wrong with tweaking the .xaml files ?
A possible interfering problem - I am using high dpi on 2 monitors with mixed Windows scaling 150% on one monitor and 125% on another. I am getting drawing problems unless I set FlowLauncher to use "~ HIGHDPIAWARE" on launch in Windows.
Is it me or is the font sizing in development?
Thanks
A
Beta Was this translation helpful? Give feedback.
All reactions
Click the pen icon in the top-right corner of the theme preview.
Control over UI element scaling has been updated so that user settings now take priority, and values specified in the XAML will no longer have an effect. However, if you select the option at the bottom of the menu to load theme preset sizes, the values defined in the XAML will be applied.
Replies: 2 comments
-
Click the pen icon in the top-right corner of the theme preview.
Control over UI element scaling has been updated so that user settings now take priority, and values specified in the XAML will no longer have an effect. However, if you select the option at the bottom of the menu to load theme preset sizes, the values defined in the XAML will be applied.
Beta Was this translation helpful? Give feedback.
All reactions
-
Oh Apologies, I never noticed the icon to edit. I thought it was a feature that was shelved.
Thank you so much, it was driving me crazy. Great feature to allow people to make things more compact.
Wonderful!
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 1