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

Commit a44abeb1 authored by Dianne Hackborn's avatar Dianne Hackborn
Browse files

Improve window manager debug output.

Cleaned this up while I was debugging another issue.

Change-Id: I0663b9ed581c6868b59655a0f994d870971ec1a6
parent 98d29b44
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -1336,8 +1336,10 @@ public interface WindowManager extends ViewManager {
            sb.append(type);
            sb.append(" fl=#");
            sb.append(Integer.toHexString(flags));
            if (format != PixelFormat.OPAQUE) {
                sb.append(" fmt=");
                sb.append(format);
            }
            if (windowAnimations != 0) {
                sb.append(" wanim=0x");
                sb.append(Integer.toHexString(windowAnimations));
@@ -1373,7 +1375,9 @@ public interface WindowManager extends ViewManager {
                sb.append(" sysuil=");
                sb.append(hasSystemUiListeners);
            }
            if (inputFeatures != 0) {
                sb.append(" if=0x").append(Integer.toHexString(inputFeatures));
            }
            sb.append('}');
            return sb.toString();
        }