Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
<controls:AddButton
IsEnabled="{Binding IsBusy, Converter={StaticResource InvertedBoolConverter}}"
Command="{Binding AddTaskCommand}"
ToolTipProperties.Text="Add task"
SemanticProperties.Description="Add task" />
</Grid>
</ContentPage>
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@
</ScrollView>

<controls:AddButton Command="{Binding AddTaskCommand}"
SemanticProperties.Description="Add task" />
SemanticProperties.Description="Add task"
ToolTipProperties.Text="Add task" />
</Grid>

</ContentPage>
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
</CollectionView>

<controls:AddButton
Command="{Binding AddProjectCommand}" />
Command="{Binding AddProjectCommand}"
SemanticProperties.Description="Add project"
ToolTipProperties.Text="Add project" />

Copilot AI Oct 31, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing SemanticProperties.Description attribute. The AddButton control in ProjectListPage.xaml lacks a semantic description for screen readers, unlike the implementations in ProjectDetailPage.xaml and MainPage.xaml which both include SemanticProperties.Description=\"Add task\". Add SemanticProperties.Description=\"Add project\" for consistency and accessibility.

Suggested change
ToolTipProperties.Text="Add project" />
ToolTipProperties.Text="Add project"
SemanticProperties.Description="Add project" />

Copilot uses AI. Check for mistakes.
</Grid>
</ContentPage>
Loading