File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
composeApp/src/commonMain/kotlin/com/jankinwu/fntv/client/ui/component/player Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -256,11 +256,11 @@ fun SubtitleControlFlyout(
256256
257257@Composable
258258fun SubtitleAdjustmentSlider (
259+ modifier : Modifier = Modifier ,
259260 value : Float ,
260261 onValueChange : (Float ) -> Unit ,
261262 valueRange : ClosedFloatingPointRange <Float > = 0f..1f,
262- showCenterMark : Boolean = false,
263- modifier : Modifier = Modifier
263+ showCenterMark : Boolean = false
264264) {
265265 val barHeight = 4 .dp
266266 val thumbRadius = 6 .dp
@@ -824,7 +824,7 @@ fun SubtitleOptionItem(
824824 }
825825 }
826826
827- if (isExternal && isHovered) {
827+ if (isExternal && isHovered && ! isSelected ) {
828828 var isIconHovered by remember { mutableStateOf(false ) }
829829 Box (
830830 modifier = Modifier
You can’t perform that action at this time.
0 commit comments