Skip to content

Commit

Permalink
fix: identation
Browse files Browse the repository at this point in the history
  • Loading branch information
axel358 committed Dec 10, 2023
1 parent ac9da55 commit 13dcb63
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/src/main/java/cu/axel/smartdock/services/DockService.java
Original file line number Diff line number Diff line change
Expand Up @@ -519,8 +519,9 @@ private void updateDisplayContext() {
preferLastDisplay = sp.getBoolean("prefer_last_display", false);
context = DeviceUtils.getDisplayContext(this, preferLastDisplay);
WindowManager windowManager = (WindowManager) context.getSystemService(WINDOW_SERVICE);
if(preferLastDisplay)
Toast.makeText(context, "Display id: " + windowManager.getDefaultDisplay().getDisplayId(), Toast.LENGTH_LONG).show();
if (preferLastDisplay)
Toast.makeText(context, "Display id: " + windowManager.getDefaultDisplay().getDisplayId(),
Toast.LENGTH_LONG).show();
}

public ArrayList<Action> getAppActions(String app) {
Expand Down

0 comments on commit 13dcb63

Please sign in to comment.