삭제 버튼 위치 조정 / 프리셋 버튼 관련 수정 #41

Open
woo wants to merge 2 commits from feature/ISSUE-34 into develop
Showing only changes of commit 6cba0674cf - Show all commits

View File

@@ -108,15 +108,15 @@ fun PresetIconButton(
Image(
painter = painterResource(id =
if (type == PresetButtonType.SAVE) {
R.drawable.ic_preset_save
R.drawable.ic_preset_save2
} else {
R.drawable.ic_preset_load
}
),
contentDescription = "",
modifier = Modifier
.size(20.px.dp),
contentScale = ContentScale.Crop
.size(30.px.dp),
contentScale = ContentScale.Fit
)
}
}