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 fda631d commit e7619a2Copy full SHA for e7619a2
1 file changed
src/PicView.Avalonia/Views/AboutView.axaml.cs
@@ -1,3 +1,4 @@
1
+using System.Runtime.InteropServices;
2
using Avalonia;
3
using Avalonia.Controls;
4
using Avalonia.Media;
@@ -19,6 +20,10 @@ public AboutView()
19
20
Loaded += (_, _) =>
21
{
22
AppVersion.Text = VersionHelper.GetCurrentVersion();
23
+ if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
24
+ {
25
+ AppVersion.Text +=" macOS beta";
26
+ }
27
28
if (!Settings.Theme.Dark && !Settings.Theme.GlassTheme)
29
0 commit comments