Skip to content

Commit a694914

Browse files
committed
Fix minor UI bugs.
1 parent 6a53b3b commit a694914

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

app/src/main/java/net/kollnig/missioncontrol/main/AppsListAdapter.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,9 @@ public void onBindViewHolder (final RecyclerView.ViewHolder h, final int pos) {
125125
holder.itemView.setEnabled(false);
126126
holder.getSwitch().setEnabled(false);
127127
holder.getAppDetails().setText("Monitoring disabled");
128+
} else {
129+
holder.itemView.setEnabled(true);
130+
holder.getSwitch().setEnabled(true);
128131
}
129132

130133
holder.itemView.setOnClickListener(view -> {

app/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Sincerely,]]></string>
148148
<string name="show_system_apps_title">Show system apps</string>
149149
<string name="show_system_apps_explanation">Show all apps on the device</string>
150150
<string name="include_mail_apps_title">Monitor email apps</string>
151-
<string name="include_mail_apps_explanation">Email apps may stop functioning when enabled (App restart required)</string>
151+
<string name="include_mail_apps_explanation">Email apps may stop functioning when enabled (app restart required).</string>
152152
<string name="google_play_data_title">Load data from Google Play</string>
153153
<string name="google_play_data_explanation">To retrieve privacy policy and developer mail. No personal data is shared.</string>
154154
<string name="menu_settings">Settings</string>

0 commit comments

Comments
 (0)