mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Fix crash for gputemp reader
This commit is contained in:
@@ -1205,10 +1205,10 @@ namespace GHelper
|
||||
|
||||
}
|
||||
|
||||
public void ButtonEnabled(Button but, bool enabled)
|
||||
public void ButtonEnabled(RButton but, bool enabled)
|
||||
{
|
||||
but.Enabled = enabled;
|
||||
but.BackColor = enabled ? Color.FromArgb(255, but.BackColor) : Color.FromArgb(100, but.BackColor);
|
||||
but.BackColor = but.Enabled ? Color.FromArgb(255, but.BackColor) : Color.FromArgb(100, but.BackColor);
|
||||
}
|
||||
|
||||
public void SetStartupCheck(bool status)
|
||||
|
||||
Reference in New Issue
Block a user