[CD Taskbar] Remove External Taskbar's Rounded Corners

Remove Taskbar's Rounded Corners for External Display.

Flag: com.android.window.flags.enable_taskbar_connected_displays
Bug: 400799093
Test: Manual
Change-Id: I6808850647cd4136aae23de13fa54ecaba3c1025
This commit is contained in:
Sukesh Ram
2025-03-04 16:51:03 -08:00
parent 006ea72afe
commit 850179005f
2 changed files with 11 additions and 1 deletions

View File

@@ -195,8 +195,11 @@ public class TaskbarControllers {
voiceInteractionWindowController
};
// TODO(b/401061748): get primary status from
// TaskbarDesktopModeController/DesktopVisibilityController.
if (taskbarDesktopModeController.isInDesktopModeAndNotInOverview(
taskbarActivityContext.getDisplayId())) {
taskbarActivityContext.getDisplayId())
|| !taskbarActivityContext.isPrimaryDisplay()) {
mCornerRoundness.value = taskbarDesktopModeController.getTaskbarCornerRoundness(
mSharedState.showCornerRadiusInDesktopMode);
} else {