Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(core): don't set core status on connect, just update UI
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonybilinski committed Sep 16, 2019
1 parent f846b6c commit 602671c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/widget/widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ void Widget::onCoreChanged(Core& core)
void Widget::onConnected()
{
ui->statusButton->setEnabled(true);
emit statusSet(core->getStatus());
emit core->statusSet(core->getStatus());
}

void Widget::onDisconnected()
Expand Down

0 comments on commit 602671c

Please sign in to comment.