-
Notifications
You must be signed in to change notification settings - Fork 26
webdav show error text below textfiels #657
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
InternetArchiveLoginScreen cursor color in dark mode
@@ -213,7 +216,7 @@ | |||
private fun metadataHeader(): Headers { | |||
return Headers.Builder() | |||
.add("x-amz-auto-make-bucket", "1") | |||
.add("x-archive-meta-language", "eng") // FIXME set based on locale or selected | |||
.add("x-archive-meta-language", "eng") // TODO: FIXME set based on locale or selected |
Check warning
Code scanning / detekt
Flags a forbidden comment. Warning
@@ -168,13 +168,13 @@ | |||
|
|||
binding.overlayContainer.show() | |||
binding.progress.show() | |||
binding.progressText.show() | |||
//binding.progressText.show() |
Check warning
Code scanning / detekt
Checks if comments have the right spacing Warning
|
||
// Make sure to keep spinning until the upload has made some noteworthy progress. | ||
if (progressValue > 2) { | ||
binding.progress.setProgressCompat(progressValue, true) | ||
} | ||
binding.progressText.text = "${progressValue}%" | ||
//binding.progressText.text = "${progressValue}%" |
Check warning
Code scanning / detekt
Checks if comments have the right spacing Warning
AppLogger.i("Updating progressText to $progressValue%") | ||
binding.progressText.show(animate = true) | ||
binding.progressText.text = "$progressValue%" | ||
//AppLogger.i("Updating progressText to $progressValue%") |
Check warning
Code scanning / detekt
Checks if comments have the right spacing Warning
binding.progressText.show(animate = true) | ||
binding.progressText.text = "$progressValue%" | ||
//AppLogger.i("Updating progressText to $progressValue%") | ||
//binding.progressText.show(animate = true) |
Check warning
Code scanning / detekt
Checks if comments have the right spacing Warning
binding.progressText.text = "$progressValue%" | ||
//AppLogger.i("Updating progressText to $progressValue%") | ||
//binding.progressText.show(animate = true) | ||
//binding.progressText.text = "$progressValue%" |
Check warning
Code scanning / detekt
Checks if comments have the right spacing Warning
InternetArchiveLoginScreen cursor color in dark mode