This commit is contained in:
MisterMLiL 2024-10-10 14:52:29 +03:00
parent 309b57a787
commit 042c137a5a
11 changed files with 2 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View File

@ -87,7 +87,6 @@ namespace GtaVUsersInfo
WindowParameters.SaveWindowParameters(window); WindowParameters.SaveWindowParameters(window);
WindowResize(); WindowResize();
} }
isUser = true;
panelColorSettings = PanelColorSettings.LoadPanelSettings(); panelColorSettings = PanelColorSettings.LoadPanelSettings();
if (panelColorSettings != null) if (panelColorSettings != null)
@ -99,6 +98,7 @@ namespace GtaVUsersInfo
panelColorSettings = new PanelColorSettings(defaultPanelColor, defaultPanelColor, defaultPanelColor, defaultPanelColor); panelColorSettings = new PanelColorSettings(defaultPanelColor, defaultPanelColor, defaultPanelColor, defaultPanelColor);
ChangePanelColor(); ChangePanelColor();
} }
isUser = true;
} }
private bool IsFormFullscreen() private bool IsFormFullscreen()

View File

@ -68,8 +68,7 @@ namespace GtaVUsersInfo.Sources
if (control is TextBox || if (control is TextBox ||
control is Button || control is Button ||
control is ComboBox || control is ComboBox ||
control is Label || control is Label)
control is MenuStrip)
{ {
control.BackColor = color; control.BackColor = color;
} }