Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,7 @@ public void refreshView() {
ArrayList<ApplicationRecord> readyApps = MultipleAppsUtil.getUsableAppRecords();

ApplicationRecord presetAppRecord = getPresetAppRecord(readyApps);
boolean noApps = readyApps.isEmpty();
if (readyApps.size() == 1 || presetAppRecord != null) {
if (readyApps.size() == 1) {
// Set this app as the last selected app, for use in choosing what app to initialize on first startup
ApplicationRecord r = presetAppRecord != null ? presetAppRecord : readyApps.get(0);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(activity);
Expand Down