Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 94857724 authored by Philip P. Moltmann's avatar Philip P. Moltmann Committed by android-build-merger
Browse files

Merge "Declare no print services if 0 print services are enabled." into nyc-dev am: b852d013

am: d8e82000

* commit 'd8e82000':
  Declare no print services if 0 print services are enabled.

Change-Id: Iee652ef70298418e4a4d773cff7a70700053ba9f
parents ba79d8a3 d8e82000
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -319,7 +319,7 @@ public final class SelectPrinterActivity extends Activity implements
        }
        TextView titleView = (TextView) findViewById(R.id.title);
        View progressBar = findViewById(R.id.progress_bar);
        if (mEnabledPrintServices.size() > 0) {
        if (mEnabledPrintServices.size() == 0) {
            titleView.setText(R.string.print_no_print_services);
            progressBar.setVisibility(View.GONE);
        } else if (adapter.getUnfilteredCount() <= 0) {