Skip to content

Commit

Permalink
Merge pull request #765 from quoid/fix/ui-interaction-issues
Browse files Browse the repository at this point in the history
fix: revise scrollbars and error messages display
  • Loading branch information
ACTCD authored Jan 4, 2025
2 parents f9e7f07 + e9f9b80 commit 26dbb09
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ a,
x-markdown {
display: flex;
flex-direction: column;
overflow: scroll;
overflow: auto;
text-align: left;
gap: var(--gap);
padding: 0 3rem;
Expand Down
2 changes: 1 addition & 1 deletion xcode/App-Shared/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ extension ViewController: UIDocumentPickerDelegate {
logger?.error("\(#function, privacy: .public) - Export failed: \(error)")
let alert = UIAlertController(
title: "Export failed",
message: error.localizedDescription,
message: "\(error)",
preferredStyle: .alert
)
alert.addAction(UIAlertAction(title: "OK", style: .default))
Expand Down
4 changes: 2 additions & 2 deletions xcode/Shared/Logger.swift
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ func USLogFilesExportTo(_ directory: URL) throws -> URL {
enum errType: String {
case notDirectory = "Not a directory URL"
case logDirURLNil = "Failed get logDirURL"
case noLogDir = "Log directory does not exist"
case noLogFiles = "The log directory is empty"
case noLogDir = "The log is not ready, please try again later (d)"
case noLogFiles = "The log is not ready, please try again later (f)"
case exportFailed = "Export failed"
}
let type: errType
Expand Down

0 comments on commit 26dbb09

Please sign in to comment.