From b65a8bb8832eb865869e5b62641e915e7454c854 Mon Sep 17 00:00:00 2001 From: Nymos Date: Wed, 19 Feb 2025 15:11:26 +0300 Subject: [PATCH] Fix DecoratedButton --- .../java/com/nto/presentation/composable/DecoratedButton.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/presentation/src/main/java/com/nto/presentation/composable/DecoratedButton.kt b/presentation/src/main/java/com/nto/presentation/composable/DecoratedButton.kt index 6c7d870..989d7c2 100644 --- a/presentation/src/main/java/com/nto/presentation/composable/DecoratedButton.kt +++ b/presentation/src/main/java/com/nto/presentation/composable/DecoratedButton.kt @@ -42,10 +42,10 @@ object DecoratedButtonValues { private val DisabledColors: ButtonColors @Composable get() = ButtonColors( + disabledContentColor = NTOTheme.colors.primaryBackground, + disabledContainerColor = NTOTheme.colors.buttonDisabled, contentColor = NTOTheme.colors.primaryBackground, - containerColor = NTOTheme.colors.buttonDisabled, - disabledContentColor = Color.Unspecified, - disabledContainerColor = Color.Unspecified + containerColor = NTOTheme.colors.button ) @Composable