Browse Source

Fixed inconsistency in FolderControl

CPKreuz 2 years ago
parent
commit
07ec4c9659
1 changed files with 4 additions and 3 deletions
  1. 4 3
      src/PixiEditor/Views/UserControls/Layers/FolderControl.xaml

+ 4 - 3
src/PixiEditor/Views/UserControls/Layers/FolderControl.xaml

@@ -100,7 +100,7 @@
                                 Text="{Binding Folder.NameBindable, ElementName=folderControl, Mode=TwoWay}" />
                             
                             <StackPanel Orientation="Horizontal">
-                                <TextBlock d:Text="100" Foreground="White">
+                                <TextBlock d:Text="100" Foreground="White" FontSize="11">
                                     <TextBlock.Text>
                                         <Binding ElementName="folderControl" Path="Folder.OpacityBindable" Converter="{converters:MultiplyConverter}" StringFormat="N0">
                                             <Binding.ConverterParameter>
@@ -109,11 +109,12 @@
                                         </Binding>
                                     </TextBlock.Text>
                                 </TextBlock>
-                                <TextBlock Foreground="White">%</TextBlock>
+                                <TextBlock Foreground="White" FontSize="11">%</TextBlock>
                                 <TextBlock 
                                 Margin="5,0,0,0" 
                                 d:Text="Normal" 
-                                Foreground="White" 
+                                Foreground="White"
+                                FontSize="11"
                                 Text="{Binding Folder.BlendModeBindable, ElementName=folderControl, Converter={converters:BlendModeToStringConverter}}"/>
                             </StackPanel>
                         </StackPanel>