mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-16 15:11:25 +00:00
Fix icon paths
This commit is contained in:
parent
25cd12cf33
commit
366a4918c3
3 changed files with 6 additions and 6 deletions
|
@ -131,9 +131,9 @@ impl CollabPanel {
|
||||||
div().flex().h_full().gap_1().items_center().child(
|
div().flex().h_full().gap_1().items_center().child(
|
||||||
svg()
|
svg()
|
||||||
.path(if expanded {
|
.path(if expanded {
|
||||||
"icons/radix/caret-down.svg"
|
"icons/caret_down.svg"
|
||||||
} else {
|
} else {
|
||||||
"icons/radix/caret-up.svg"
|
"icons/caret_up.svg"
|
||||||
})
|
})
|
||||||
.w_3p5()
|
.w_3p5()
|
||||||
.h_3p5()
|
.h_3p5()
|
||||||
|
|
|
@ -39,7 +39,7 @@ pub enum PanelSide {
|
||||||
|
|
||||||
use std::collections::HashSet;
|
use std::collections::HashSet;
|
||||||
|
|
||||||
#[derive(Element)]
|
// #[derive(Element)]
|
||||||
pub struct Panel {
|
pub struct Panel {
|
||||||
scroll_state: ScrollState,
|
scroll_state: ScrollState,
|
||||||
current_side: PanelSide,
|
current_side: PanelSide,
|
||||||
|
|
|
@ -261,7 +261,7 @@ impl Titlebar {
|
||||||
// .fill(theme.lowest.base.pressed.background)
|
// .fill(theme.lowest.base.pressed.background)
|
||||||
.child(
|
.child(
|
||||||
svg()
|
svg()
|
||||||
.path("icons/radix/speaker-loud.svg")
|
.path("icons/speaker-loud.svg")
|
||||||
.size_3p5()
|
.size_3p5()
|
||||||
.fill(theme.lowest.base.default.foreground),
|
.fill(theme.lowest.base.default.foreground),
|
||||||
),
|
),
|
||||||
|
@ -281,7 +281,7 @@ impl Titlebar {
|
||||||
// .fill(theme.lowest.base.pressed.background)
|
// .fill(theme.lowest.base.pressed.background)
|
||||||
.child(
|
.child(
|
||||||
svg()
|
svg()
|
||||||
.path("icons/radix/desktop.svg")
|
.path("icons/desktop.svg")
|
||||||
.size_3p5()
|
.size_3p5()
|
||||||
.fill(theme.lowest.base.default.foreground),
|
.fill(theme.lowest.base.default.foreground),
|
||||||
),
|
),
|
||||||
|
@ -313,7 +313,7 @@ impl Titlebar {
|
||||||
)
|
)
|
||||||
.child(
|
.child(
|
||||||
svg()
|
svg()
|
||||||
.path("icons/caret_down_8.svg")
|
.path("icons/caret_down.svg")
|
||||||
.w_2()
|
.w_2()
|
||||||
.h_2()
|
.h_2()
|
||||||
.fill(theme.lowest.variant.default.foreground),
|
.fill(theme.lowest.variant.default.foreground),
|
||||||
|
|
Loading…
Reference in a new issue