Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/gui/ExportProjectDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,11 @@ OutputSettings::StereoMode mapToStereoMode(int index)
switch (index)
{
case 0:
return OutputSettings::StereoMode_Stereo;
return OutputSettings::StereoMode_Mono;
case 1:
return OutputSettings::StereoMode_JointStereo;
return OutputSettings::StereoMode_Stereo;
case 2:
return OutputSettings::StereoMode_Mono;
return OutputSettings::StereoMode_JointStereo;
default:
return OutputSettings::StereoMode_Stereo;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add an extra tab to everything withing the brackets

{
    like
    this
}

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't have a rule for switch statement, so it's fine.

}
Expand Down