Skip to content

Commit

Permalink
Merge branch 'develop' into cairo_2023
Browse files Browse the repository at this point in the history
  • Loading branch information
djowel committed Oct 14, 2023
2 parents 49bc3f6 + f99a498 commit bcbdd53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/buttons/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ auto make_buttons(view& view_)
{
if (auto p = reset.lock())
{
(*p)->icon(icons::lock);
(*p)->set_icon(icons::lock);
p->enable(true);
view_.refresh(*p);
}
Expand All @@ -141,7 +141,7 @@ auto make_buttons(view& view_)

if (auto p = reset.lock())
{
(*p)->icon(icons::lock_open);
(*p)->set_icon(icons::lock_open);
p->enable(false);
view_.refresh(*p);
}
Expand Down

0 comments on commit bcbdd53

Please # to comment.