Small improvement

pull/196/head 1.1539
M66B 4 years ago
parent 352a597eeb
commit 696950374f

@ -96,8 +96,10 @@ public class ActivityWidget extends ActivityBase {
cbSemiTransparent.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
btnColor.setColor(Color.TRANSPARENT);
setBackground();
if (isChecked) {
btnColor.setColor(Color.TRANSPARENT);
setBackground();
}
}
});

@ -69,7 +69,8 @@ public class ActivityWidgetSync extends ActivityBase {
cbSemiTransparent.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
btnColor.setColor(Color.TRANSPARENT);
if (isChecked)
btnColor.setColor(Color.TRANSPARENT);
}
});

@ -103,7 +103,8 @@ public class ActivityWidgetUnified extends ActivityBase {
cbSemiTransparent.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
btnColor.setColor(Color.TRANSPARENT);
if (isChecked)
btnColor.setColor(Color.TRANSPARENT);
}
});

Loading…
Cancel
Save