A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add correct cursor to track header columns

+9 -2
+9 -2
src/Applications/UI/Tracks/Scene/List.elm
··· 340 340 -- HEADER COLUMN 341 341 342 342 343 - headerColumn : String -> Float -> Maybe (Html msg) -> msg -> Html msg 343 + headerColumn : String -> Float -> Maybe (Html Msg) -> Msg -> Html Msg 344 344 headerColumn text_ width maybeSortIcon msg = 345 345 brick 346 346 [ Html.Events.onClick msg ··· 351 351 ] 352 352 [ C.border_l 353 353 , C.border_gray_300 354 - , C.cursor_default 355 354 , C.leading_relaxed 356 355 , C.pl_2 357 356 , C.pr_2 358 357 , C.pt_px 359 358 , C.relative 359 + 360 + -- 361 + , case msg of 362 + Bypass -> 363 + C.cursor_default 364 + 365 + _ -> 366 + C.cursor_pointer 360 367 361 368 -- 362 369 , C.first__border_l_0