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);
WindowResize();
}
isUser = true;
panelColorSettings = PanelColorSettings.LoadPanelSettings();
if (panelColorSettings != null)
@ -99,6 +98,7 @@ namespace GtaVUsersInfo
panelColorSettings = new PanelColorSettings(defaultPanelColor, defaultPanelColor, defaultPanelColor, defaultPanelColor);
ChangePanelColor();
}
isUser = true;
}
private bool IsFormFullscreen()

View File

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