Skip to content

Commit

Permalink
Remove elses (#839)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphal authored Jun 3, 2023
1 parent b8c4ad9 commit ac0c956
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/F3DStarter.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -191,15 +191,15 @@ int F3DStarter::Start(int argc, char** argv)
{
return loadFile(-1);
}
else if (keySym == "Right")
if (keySym == "Right")
{
return loadFile(+1);
}
else if (keySym == "Up")
if (keySym == "Up")
{
return loadFile(0, true);
}
else if (keySym == "Down")
if (keySym == "Down")
{
if (this->Internals->LoadedFile)
{
Expand Down

0 comments on commit ac0c956

Please sign in to comment.