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

Commit e951a139 authored by Philip P. Moltmann's avatar Philip P. Moltmann
Browse files

Declare no print services if 0 print services are enabled.

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