Skip to content

Commit

Permalink
Fixed wrong function name.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Oct 15, 2023
1 parent 1a74b33 commit 8e6e337
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mrv2/lib/mrvPanels/mrvPanelsCallbacks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ namespace mrv

bool one_panel_only = false;

void panel::onlyOne(bool t)
void onlyOne(bool t)
{
one_panel_only = t;
bool send = App::ui->uiPrefs->SendUI->value();
if (send)
tcp->pushMessage("One Panel Only", t);
}

bool panel::onlyOne()
bool onlyOne()
{
return one_panel_only;
}
Expand Down

0 comments on commit 8e6e337

Please sign in to comment.