Skip to content

Commit ec4f74b

Browse files
committed
feat: replace "Add task" text in button for simply "+". It could be more visually appealing by using a Path, but the obscurity/complexity isn't worth imho.
1 parent 49bffd0 commit ec4f74b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Desktop/Project/TasksList.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<StackPanel>
1616
<StackPanel Orientation="Horizontal">
1717
<Label Content="Tasks:" />
18-
<Button AutomationProperties.AutomationId="AddTask" Content="_Add task" Command="{Binding Add}" />
18+
<Button AutomationProperties.AutomationId="AddTask" Content="+" FontSize="20" Command="{Binding Add}" />
1919
</StackPanel>
2020

2121
<ListBox ItemsSource="{Binding Tasks}">

0 commit comments

Comments
 (0)