Skip to content

Commit

Permalink
feat: Restore dependency info text when it doesn't downloading a library
Browse files Browse the repository at this point in the history
  • Loading branch information
aikrq committed Dec 29, 2024
1 parent 3bb34c2 commit 5e9a1df
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,5 +227,9 @@ private void setDownloadState(boolean downloading) {
binding.dependencyInput.setEnabled(!downloading);
binding.cbSkipSubdependencies.setEnabled(!downloading);
setCancelable(!downloading);

if (!downloading) {
binding.dependencyInfo.setText(R.string.local_library_manager_dependency_info);
}
}
}

0 comments on commit 5e9a1df

Please sign in to comment.