We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 458a8b3 commit 414db19Copy full SHA for 414db19
Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs
@@ -314,4 +314,11 @@ private void ResetSettingWindowFont()
314
{
315
SettingWindowFont = Win32Helper.GetSystemDefaultFont(false);
316
}
317
+
318
+ [RelayCommand]
319
+ private void OpenReleaseNotes()
320
+ {
321
+ var releaseNotesWindow = new ReleaseNotesWindow();
322
+ releaseNotesWindow.Show();
323
+ }
324
Flow.Launcher/SettingPages/Views/SettingsPaneAbout.xaml
@@ -55,7 +55,7 @@
55
</cc:Card>
56
57
<cc:Card Title="{DynamicResource releaseNotes}" Icon="">
58
- <cc:HyperLink Text="{DynamicResource releaseNotes}" Uri="{Binding ReleaseNotes}" />
+ <Button Command="{Binding OpenReleaseNotesCommand}" Content="{DynamicResource releaseNotes}" />
59
60
61
0 commit comments