Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

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

Fix flex overflow in Library page

Add min_w_0 and flex_shrink_0 to flex containers/items to prevent
unexpected overflow and text truncation in likes and track rows.

+5
+5
gpui/src/ui/components/pages/library.rs
··· 2287 2287 div() 2288 2288 .id("likes_scroll") 2289 2289 .flex_1() 2290 + .min_w_0() 2290 2291 .min_h_0() 2291 2292 .overflow_y_scroll() 2292 2293 .child( 2293 2294 div() 2294 2295 .w_full() 2296 + .min_w_0() 2295 2297 .flex() 2296 2298 .flex_col() 2297 2299 // Header ··· 2414 2416 .child( 2415 2417 div() 2416 2418 .w_full() 2419 + .flex_shrink_0() 2417 2420 .flex() 2418 2421 .items_center() 2419 2422 .gap_x_4() ··· 2442 2445 .child( 2443 2446 div() 2444 2447 .w_40() 2448 + .min_w_0() 2445 2449 .overflow_hidden() 2446 2450 .text_xs() 2447 2451 .font_weight(FontWeight::MEDIUM) ··· 3087 3091 .child( 3088 3092 div() 3089 3093 .w_40() 3094 + .min_w_0() 3090 3095 .overflow_hidden() 3091 3096 .text_xs() 3092 3097 .font_weight(FontWeight::MEDIUM)