Skip to content

Commit

Permalink
Add more currencies, fix #1
Browse files Browse the repository at this point in the history
  • Loading branch information
songchenwen committed Nov 13, 2014
1 parent 46360df commit aa85e41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions bither-ios/Base.lproj/MainStoryboard.storyboard
Expand Up @@ -742,8 +742,8 @@
<color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="$" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="vi1-Kv-pOT">
<rect key="frame" x="127" y="50" width="19" height="30"/>
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="$" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="vi1-Kv-pOT">
<rect key="frame" x="45" y="50" width="99" height="30"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="boldSystem" pointSize="26"/>
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="calibratedRGB"/>
Expand Down Expand Up @@ -2790,7 +2790,7 @@
<size key="shadowOffset" width="0.0" height="4"/>
</label>
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="%" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="jDX-wx-Vm4">
<rect key="frame" x="137.00000015923962" y="36" width="32" height="31"/>
<rect key="frame" x="137.00000032998699" y="36" width="32" height="31"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" widthSizable="YES" heightSizable="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="30"/>
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="calibratedRGB"/>
Expand Down
2 changes: 1 addition & 1 deletion bither-ios/Controllers/Hot/MarketViewController.m
Expand Up @@ -148,7 +148,7 @@ -(void)positionViews{
frame.size.width = width;
self.lbNew.frame = frame;
frame = self.lbSymbol.frame;
frame.origin.x = self.lbNew.frame.origin.x - frame.size.width;
frame.origin.x = self.lbNew.frame.origin.x - frame.size.width - 5;
self.lbSymbol.frame = frame;

frame = self.vLeftContainer.frame;
Expand Down

0 comments on commit aa85e41

Please sign in to comment.