Skip to content

Commit

Permalink
Misc
Browse files Browse the repository at this point in the history
  • Loading branch information
ShankarBUS committed Jan 6, 2025
1 parent df76fc7 commit 9f14b84
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Symptum.Editor/Controls/AddNewItemDialog.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ private void SetParentInfo(IResource? parentResource)
else
{
parentInfo.Visibility = Visibility.Visible;
parentInfo.Text = $"The new item will be added to {parentResource.Title}";
parentInfo.Text = $"The new item will be added to \"{parentResource.Title}\"";
}
}

Expand Down
14 changes: 7 additions & 7 deletions src/Symptum.Editor/Controls/FindControl.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@
</Grid.ColumnDefinitions>
<AutoSuggestBox x:Name="queryBox" Text="{x:Bind QueryText, Mode=TwoWay}" AllowFocusOnInteraction="True" QueryIcon="Find" Margin="4" PlaceholderText="Find" />
<Button x:Name="fPrevButton" Visibility="{x:Bind FindPreviousEnabled, Converter={StaticResource BooleanToVisibilityConverter}}"
Grid.Column="1" Margin="4" VerticalAlignment="Bottom"
Grid.Column="1" Margin="4" VerticalAlignment="Stretch"
HorizontalAlignment="Stretch" ToolTipService.ToolTip="Find Previous">
<FontIcon Glyph="&#xE72B;" />
<FontIcon Glyph="&#xE72B;" FontSize="16" />
</Button>
<Button x:Name="fNextButton" Visibility="{x:Bind FindNextEnabled, Converter={StaticResource BooleanToVisibilityConverter}}"
Grid.Column="2" Margin="4" VerticalAlignment="Bottom"
Grid.Column="2" Margin="4" VerticalAlignment="Stretch"
HorizontalAlignment="Stretch" ToolTipService.ToolTip="Find Next">
<FontIcon Glyph="&#xE72A;" />
<FontIcon Glyph="&#xE72A;" FontSize="16" />
</Button>
<Button x:Name="fAllButton" Visibility="{x:Bind FindAllEnabled, Converter={StaticResource BooleanToVisibilityConverter}}"
Grid.Column="3" Margin="4" VerticalAlignment="Bottom"
HorizontalAlignment="Stretch" ToolTipService.ToolTip="Find All">
<SymbolIcon Symbol="Find" />
<FontIcon Glyph="&#xE71E;" FontSize="16" />
</Button>
<Button x:Name="fClearButton" Grid.Column="4" Margin="4" VerticalAlignment="Bottom"
<Button x:Name="fClearButton" Grid.Column="4" Margin="4" VerticalAlignment="Stretch"
HorizontalAlignment="Stretch" ToolTipService.ToolTip="Clear">
<SymbolIcon Symbol="Cancel" />
<FontIcon Glyph="&#xE711;" FontSize="16" />
</Button>
<ComboBox x:Name="fContextComboBox" ItemsSource="{x:Bind FindContexts}" SelectedItem="{x:Bind SelectedContext, Mode=TwoWay}"
Grid.Row="1" Grid.ColumnSpan="2" Margin="4" HorizontalAlignment="Stretch" />
Expand Down

0 comments on commit 9f14b84

Please sign in to comment.