Skip to content

Commit

Permalink
Remove colons after labels
Browse files Browse the repository at this point in the history
  • Loading branch information
ledoge committed Dec 28, 2021
1 parent 0d76e6d commit 6494aa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DwmLutGUI/DwmLutGUI/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<TextBlock Margin="0,0,0,6" Text="SDR LUT:" TextAlignment="Right" />
<TextBlock Margin="0,0,0,6" Text="SDR LUT" TextAlignment="Right" />
<TextBox IsEnabled="{Binding SelectedMonitor, TargetNullValue=false}"
Text="{Binding SdrLutPath, UpdateSourceTrigger=PropertyChanged}" IsReadOnly="True"
Grid.Row="0" Grid.Column="1" Width="Auto" Margin="6,0,6,6" />
Expand All @@ -35,7 +35,7 @@
<Button IsEnabled="{Binding SdrLutPath, TargetNullValue=false}" Grid.Row="0" Grid.Column="3"
Content="Clear"
Width="75" Margin="0,0,0,6" Click="SdrLutClear_Click" />
<TextBlock Grid.Row="1" Grid.Column="0" Text="HDR LUT:" TextAlignment="Right" />
<TextBlock Grid.Row="1" Grid.Column="0" Text="HDR LUT" TextAlignment="Right" />
<TextBox Grid.Row="1" IsEnabled="{Binding SelectedMonitor, TargetNullValue=false}"
Text="{Binding HdrLutPath, UpdateSourceTrigger=PropertyChanged}" IsReadOnly="True"
Grid.Column="1" Width="Auto" Margin="6,0,6,0" />
Expand Down

0 comments on commit 6494aa1

Please sign in to comment.