Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 4 additions & 1 deletion src/iOS/Upload/Base.lproj/Changeset.storyboard
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,11 @@
<rect key="frame" x="188.5" y="308" width="37" height="37"/>
<color key="color" systemColor="labelColor"/>
</activityIndicatorView>
<textField opaque="NO" contentMode="scaleToFill" horizontalCompressionResistancePriority="500" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="survey, Bing, etc." textAlignment="natural" minimumFontSize="17" clearButtonMode="whileEditing" translatesAutoresizingMaskIntoConstraints="NO" id="ps9-Hb-Vow">
<textField opaque="NO" contentMode="scaleToFill" horizontalCompressionResistancePriority="500" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="none" placeholder="survey, Bing, etc." textAlignment="natural" minimumFontSize="17" clearButtonMode="whileEditing" translatesAutoresizingMaskIntoConstraints="NO" id="ps9-Hb-Vow">
<rect key="frame" x="86.5" y="272" width="307.5" height="34"/>
<constraints>
<constraint firstAttribute="height" constant="35" id="ps9-Hb-Hgt"/>
</constraints>
<fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
<textInputTraits key="textInputTraits"/>
</textField>
Expand Down
2 changes: 2 additions & 0 deletions src/iOS/Upload/UploadViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ class UploadViewController: UIViewController, UITextViewDelegate {
sourceTextField.layer.borderColor = color.cgColor
sourceTextField.layer.borderWidth = 2.0
sourceTextField.layer.cornerRadius = 10.0
sourceTextField.leftView = UIView(frame: CGRect(x: 0, y: 0, width: 7.5, height: 0))
sourceTextField.leftViewMode = .always

xmlTextView.layer.borderColor = color.cgColor
xmlTextView.layer.borderWidth = 2.0
Expand Down