Skip to content

Commit

Permalink
ODYSSEY: Fix button icon reappearing when should be invisible
Browse files Browse the repository at this point in the history
  • Loading branch information
vkremianskii committed Mar 3, 2019
1 parent 4cd7d39 commit 66be84c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engines/odyssey/button.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void WidgetButton::load(const Aurora::GFF3Struct &gff) {
}

void WidgetButton::show() {
if (isVisible())
if (isInvisible())
return;

Widget::show();
Expand Down

0 comments on commit 66be84c

Please sign in to comment.