Skip to content

Commit

Permalink
🐛 Fix settings app
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinbreiz committed Mar 13, 2024
1 parent 83012ef commit bcddf15
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion SRC/Aura_OS/Properties/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ namespace Aura_OS
{
public class VersionInfo
{
public static string revision = "130320241305";
public static string revision = "130320241316";
}
}
23 changes: 13 additions & 10 deletions SRC/Aura_OS/System/Processing/Applications/SettingsApp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -268,10 +268,13 @@ public override void Draw()
_windowsAlpha.DrawInParent();
_taskbarAlpha.Draw();
_taskbarAlpha.DrawInParent();
_resLabel.Draw();
_resLabel.DrawInParent();
_wallpaperLabel.Draw();
_wallpaperLabel.DrawInParent();
_resX.Draw();
_resX.DrawInParent();
_resY.Draw();
_resY.DrawInParent();
_wallpaperPath.Draw();
_wallpaperPath.DrawInParent();


_usernameLabel.Draw();
_usernameLabel.DrawInParent();
Expand All @@ -285,12 +288,12 @@ public override void Draw()
_themeXmlPathLabel.DrawInParent();
_windowsAlphaLabel.Draw();
_windowsAlphaLabel.DrawInParent();
_resX.Draw();
_resX.DrawInParent();
_resY.Draw();
_resY.DrawInParent();
_wallpaperPath.Draw();
_wallpaperPath.DrawInParent();
_taskbarAlphaLabel.Draw();
_taskbarAlphaLabel.DrawInParent();
_resLabel.Draw();
_resLabel.DrawInParent();
_wallpaperLabel.Draw();
_wallpaperLabel.DrawInParent();

if (Kernel.Installed)
{
Expand Down

0 comments on commit bcddf15

Please sign in to comment.