Skip to content

Commit b6ef866

Browse files
committed
🐛 Fix right click
1 parent 8c79076 commit b6ef866

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

SRC/Aura_OS/Properties/VersionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ namespace Aura_OS
22
{
33
public class VersionInfo
44
{
5-
public static string revision = "010320241912";
5+
public static string revision = "010320241917";
66
}
77
}

SRC/Aura_OS/System/Graphics/UI/GUI/Components/RightClick.cs

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,20 @@ public override void HandleLeftClick()
3030
public class RightClick : Window
3131
{
3232
public List<RightClickEntry> Entries;
33-
public bool Opened = false;
33+
34+
private bool _opened = false;
35+
public bool Opened
36+
{
37+
get
38+
{
39+
return _opened;
40+
}
41+
set
42+
{
43+
Visible = value;
44+
_opened = value;
45+
}
46+
}
3447

3548
public RightClick(int x, int y, int width, int height) : base(x, y, width, height)
3649
{

0 commit comments

Comments
 (0)