Skip to content

Commit

Permalink
clang1
Browse files Browse the repository at this point in the history
  • Loading branch information
ihakov2 committed Oct 26, 2023
1 parent 64122c6 commit 43d71e6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Adafruit_GFX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1750,11 +1750,11 @@ char *Adafruit_GFX_Button::getLabel() { return _label; }
@param fillColor uint16_t set button fillColor
*/
/**********************************************************************/
void Adafruit_GFX_Button::setEnabled(bool enable, uint16_t fillColor) {
_enabled = enable;
_fillcolor = fillColor;
currstate = (enable? currstate: false);
drawButton();
void Adafruit_GFX_Button::setEnabled(bool enable, uint16_t fillColor) {
_enabled = enable;
_fillcolor = fillColor;
currstate = (enable? currstate: false);
drawButton();
}

// -------------------------------------------------------------------------
Expand Down

0 comments on commit 43d71e6

Please sign in to comment.