Update Arrows icons
This commit is contained in:
parent
a5977d5dd1
commit
23d025899b
1 changed files with 3 additions and 2 deletions
|
|
@ -16,6 +16,7 @@ import androidx.compose.material.icons.Icons
|
|||
import androidx.compose.material.icons.automirrored.filled.KeyboardArrowLeft
|
||||
import androidx.compose.material.icons.automirrored.filled.KeyboardArrowRight
|
||||
import androidx.compose.material.icons.filled.*
|
||||
import androidx.compose.material.icons.filled.KeyboardDoubleArrowRight
|
||||
import androidx.compose.material3.*
|
||||
import androidx.compose.runtime.*
|
||||
import androidx.compose.ui.Alignment
|
||||
|
|
@ -249,7 +250,7 @@ fun MidiControlPanel(
|
|||
modifier = Modifier.background(Color(0XFF2C3130)),
|
||||
onClick = { updateTempoByBpmStep(-10) }) {
|
||||
Icon(
|
||||
Icons.AutoMirrored.Filled.KeyboardArrowLeft,
|
||||
Icons.Default.KeyboardDoubleArrowLeft,
|
||||
"gauche",
|
||||
tint = Color.White.copy(0.7f),
|
||||
modifier = Modifier.size(22.dp)
|
||||
|
|
@ -297,7 +298,7 @@ fun MidiControlPanel(
|
|||
modifier = Modifier.background(Color(0XFF2C3130)),
|
||||
onClick = { updateTempoByBpmStep(10) }) {
|
||||
Icon(
|
||||
Icons.AutoMirrored.Filled.KeyboardArrowRight,
|
||||
Icons.Default.KeyboardDoubleArrowRight,
|
||||
"droite",
|
||||
tint = Color.White.copy(0.7f),
|
||||
modifier = Modifier.size(22.dp)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue