Skip to content

Commit

Permalink
Fix orientation annotations and tagging for 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fvpolpeta committed Sep 29, 2015
1 parent 2bab312 commit d5c8d13
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DCMView.m
Original file line number Diff line number Diff line change
Expand Up @@ -7679,13 +7679,13 @@ - (void)getOrientationText:(char *) orientation : (float *) vector :(BOOL) inv

if( inv)
{
orientationX = -vector[ 0] < 0 ? NSLocalizedString( @"L", @"L: Left") : NSLocalizedString( @"R", @"R: Right");
orientationX = -vector[ 0] < 0 ? NSLocalizedString( @"R", @"R: Right") : NSLocalizedString( @"L", @"L: Left");
orientationY = -vector[ 1] < 0 ? NSLocalizedString( @"A", @"A: Anterior") : NSLocalizedString( @"P", @"P: Posterior");
orientationZ = -vector[ 2] < 0 ? NSLocalizedString( @"I", @"I: Inferior") : NSLocalizedString( @"S", @"S: Superior");
}
else
{
orientationX = vector[ 0] < 0 ? NSLocalizedString( @"L", @"L: Left") : NSLocalizedString( @"R", @"R: Right");
orientationX = vector[ 0] < 0 ? NSLocalizedString( @"R", @"R: Right") : NSLocalizedString( @"L", @"L: Left");
orientationY = vector[ 1] < 0 ? NSLocalizedString( @"A", @"A: Anterior") : NSLocalizedString( @"P", @"P: Posterior");
orientationZ = vector[ 2] < 0 ? NSLocalizedString( @"I", @"I: Inferior") : NSLocalizedString( @"S", @"S: Superior");
}
Expand Down
6 changes: 3 additions & 3 deletions Deployment-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
<key>CFBundleExecutable</key>
<string>Horos</string>
<key>CFBundleGetInfoString</key>
<string>Horos v1.1.0</string>
<string>Horos v1.1.1</string>
<key>CFBundleIconFile</key>
<string>Horos.icns</string>
<key>CFBundleIdentifier</key>
Expand All @@ -189,7 +189,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<string>1.1.1</string>
<key>CFBundleSignature</key>
<string>OsiX</string>
<key>CFBundleURLTypes</key>
Expand All @@ -208,7 +208,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>20150927</string>
<string>20150929</string>
<key>GitHash</key>
<string></string>
<key>GitState</key>
Expand Down

0 comments on commit d5c8d13

Please sign in to comment.