Revert "updating the drawer position to offset instead of anchors (#586)" (#587)

This reverts commit 6973668278.
This commit is contained in:
PraveenKumar yeruva 2024-01-03 13:01:52 +05:30 коммит произвёл GitHub
Родитель 6973668278
Коммит 4db3d428db
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -293,7 +293,7 @@ private class DrawerPositionProvider(val offset: IntOffset) : PopupPositionProvi
layoutDirection: LayoutDirection,
popupContentSize: IntSize
): IntOffset {
return IntOffset(offset.x, offset.y)
return IntOffset(anchorBounds.left + offset.x, anchorBounds.top + offset.y)
}
}