Skip to content

Commit

Permalink
GH-3418 tiny ui improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryBespalov committed Jun 7, 2024
1 parent 81c3a3f commit 9c87319
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class CreateExportPasswordViewController: UIViewController {
textField.textField.isSecureTextEntry = true
textField.textField.delegate = self
textField.textField.clearButtonMode = .always
textField.textField.becomeFirstResponder()

if let value = plainTextPassword {
textField.textField.text = value
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="jVT-TE-2xN" userLabel="ContentView">
<rect key="frame" x="0.0" y="0.0" width="414" height="814"/>
<subviews>
<stackView opaque="NO" contentMode="scaleToFill" axis="vertical" alignment="center" spacing="32" translatesAutoresizingMaskIntoConstraints="NO" id="1Gx-rA-E0l">
<stackView opaque="NO" contentMode="scaleToFill" axis="vertical" spacing="32" translatesAutoresizingMaskIntoConstraints="NO" id="1Gx-rA-E0l">
<rect key="frame" x="16" y="16" width="382" height="105"/>
<subviews>
<stackView opaque="NO" contentMode="scaleToFill" axis="vertical" spacing="8" translatesAutoresizingMaskIntoConstraints="NO" id="LsW-zt-ujG">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ class AppSettingsViewController: UITableViewController, PasscodeProtecting {
self.exportFlow = ExportDataFlow(completion: { [weak self] success in
self?.exportFlow = nil
})
self.present(flow: self.exportFlow, dismissableOnSwipe: false)
self.present(flow: self.exportFlow)
}
}

Expand All @@ -372,7 +372,7 @@ class AppSettingsViewController: UITableViewController, PasscodeProtecting {
self.importFlow = ImportDataFlow(completion: { [weak self] success in
self?.importFlow = nil
})
self.present(flow: self.importFlow, dismissableOnSwipe: false)
self.present(flow: self.importFlow)
}
}

Expand Down

0 comments on commit 9c87319

Please sign in to comment.