mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
GUI: Do not enable Aero glass on Win8/10
Bug report by squirrel25 @ MC Forum
This commit is contained in:
parent
ea4408faf5
commit
fedf87b133
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ namespace MinecraftClientGUI
|
|||
box_output.Font = new Font("Consolas", 8);
|
||||
box_output.BackColor = Color.White;
|
||||
|
||||
if (Environment.OSVersion.Version.Major >= 6)
|
||||
if (Environment.OSVersion.Version.Major >= 6 && Environment.OSVersion.Version.Minor == 1)
|
||||
{
|
||||
this.BackColor = Color.DarkMagenta; this.TransparencyKey = Color.DarkMagenta;
|
||||
MARGINS marg = new MARGINS() { Left = -1, Right = -1, Top = -1, Bottom = -1 };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue