Skip to content

Commit

Permalink
提示框出现在左上角的问题大概率修好了
Browse files Browse the repository at this point in the history
  • Loading branch information
d3ara1n committed Oct 2, 2023
1 parent de300a3 commit 08b06b2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions changelogs/v0.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@

## ---

## v0.5.3

- **修复**交换了错误的窗口初始大小默认值
- **修复**实例信息页面标签页网络错误信息能正确显示
- **优化**改善部分UI元素和逻辑
- **新增**支持CurseForge着色器包搜索
- **新增**为实例添加笔记和待办记录小挂件
- **修复**导航栏提示框在同时滚动时会出现在左上角的问题大概率是已经修好了

## v0.5.2

Expand Down
2 changes: 1 addition & 1 deletion src/Polymerium.App/Views/InstanceView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@
<controls:GroupBox Margin="5,5,10,5" Height="184">
<controls:GroupBox.Header>
<Grid>
<TextBlock Text="记录"
<TextBlock Text="历史"
Style="{StaticResource SubtitleTextBlockStyle}" />
</Grid>
</controls:GroupBox.Header>
Expand Down
7 changes: 5 additions & 2 deletions src/Polymerium.App/Views/MainView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,12 @@
</NavigationView.PaneCustomContent>
<NavigationView.MenuItemTemplate>
<DataTemplate x:DataType="models:NavigationItemModel">
<Grid Height="64" Margin="0,0,-10,0" >
<Grid Height="64" Margin="0,0,-10,0" ToolTipService.Placement="Right">
<ToolTipService.ToolTip>
<TextBlock Text="{x:Bind Caption}"/>
</ToolTipService.ToolTip>
<!-- TODO: 使用外置 popup 显示悬浮窗,右键查看更多信息 -->
<Grid VerticalAlignment="Center" Margin="0" ToolTipService.ToolTip="{x:Bind Caption}" ToolTipService.Placement="Right">
<Grid VerticalAlignment="Center" Margin="0">
<FontIcon Glyph="{x:Bind Glyph}" HorizontalAlignment="Center" />
<toolkit:ImageEx Height="40" Width="40" HorizontalAlignment="Center"
VerticalAlignment="Center" Source="{x:Bind ThumbnailSource}"
Expand Down

0 comments on commit 08b06b2

Please sign in to comment.