mirror of https://github.com/lapce/lapce.git
fix: correct icons used (#1561)
This commit is contained in:
parent
10ffd1b26f
commit
497e9505be
|
@ -19,7 +19,7 @@ name = "Lapce Codicons"
|
||||||
"window.close" = "chrome-close"
|
"window.close" = "chrome-close"
|
||||||
"window.restore" = "chrome-restore"
|
"window.restore" = "chrome-restore"
|
||||||
"window.maximise" = "chrome-maximize"
|
"window.maximise" = "chrome-maximize"
|
||||||
"window.minimise" = "chrome-minimise"
|
"window.minimise" = "chrome-minimize"
|
||||||
|
|
||||||
"file" = "file"
|
"file" = "file"
|
||||||
"file_explorer" = "files"
|
"file_explorer" = "files"
|
||||||
|
@ -31,12 +31,10 @@ name = "Lapce Codicons"
|
||||||
"scm.diff.removed" = "diff-removed"
|
"scm.diff.removed" = "diff-removed"
|
||||||
"scm.diff.renamed" = "diff-renamed"
|
"scm.diff.renamed" = "diff-renamed"
|
||||||
|
|
||||||
"palette.previous" = "arrow-left"
|
|
||||||
"palette.next" = "arrow-right"
|
|
||||||
"palette.menu" = "chevron-down"
|
"palette.menu" = "chevron-down"
|
||||||
|
|
||||||
"location.forward" = "arrow-left"
|
"location.forward" = "arrow-right"
|
||||||
"location.backward" = "arrow-right"
|
"location.backward" = "arrow-left"
|
||||||
|
|
||||||
"item.opened" = "chevron-down"
|
"item.opened" = "chevron-down"
|
||||||
"item.closed" = "chevron-right"
|
"item.closed" = "chevron-right"
|
||||||
|
|
|
@ -206,7 +206,7 @@ name = ""
|
||||||
"window.close" = "chrome-close"
|
"window.close" = "chrome-close"
|
||||||
"window.restore" = "chrome-restore"
|
"window.restore" = "chrome-restore"
|
||||||
"window.maximise" = "chrome-maximize"
|
"window.maximise" = "chrome-maximize"
|
||||||
"window.minimise" = "chrome-minimise"
|
"window.minimise" = "chrome-minimize"
|
||||||
|
|
||||||
"file" = "file"
|
"file" = "file"
|
||||||
"file_explorer" = "files"
|
"file_explorer" = "files"
|
||||||
|
@ -218,12 +218,10 @@ name = ""
|
||||||
"scm.diff.removed" = "diff-removed"
|
"scm.diff.removed" = "diff-removed"
|
||||||
"scm.diff.renamed" = "diff-renamed"
|
"scm.diff.renamed" = "diff-renamed"
|
||||||
|
|
||||||
"palette.previous" = "arrow-left"
|
|
||||||
"palette.next" = "arrow-right"
|
|
||||||
"palette.menu" = "chevron-down"
|
"palette.menu" = "chevron-down"
|
||||||
|
|
||||||
"location.forward" = "arrow-left"
|
"location.forward" = "arrow-right"
|
||||||
"location.backward" = "arrow-right"
|
"location.backward" = "arrow-left"
|
||||||
|
|
||||||
"item.opened" = "chevron-down"
|
"item.opened" = "chevron-down"
|
||||||
"item.closed" = "chevron-right"
|
"item.closed" = "chevron-right"
|
||||||
|
|
|
@ -178,8 +178,6 @@ impl LapceIcons {
|
||||||
pub const SCM_DIFF_REMOVED: &str = "scm.diff.removed";
|
pub const SCM_DIFF_REMOVED: &str = "scm.diff.removed";
|
||||||
pub const SCM_DIFF_RENAMED: &str = "scm.diff.renamed";
|
pub const SCM_DIFF_RENAMED: &str = "scm.diff.renamed";
|
||||||
|
|
||||||
pub const PALETTE_PREVIOUS: &str = "palette.previous";
|
|
||||||
pub const PALETTE_NEXT: &str = "palette.next";
|
|
||||||
pub const PALETTE_MENU: &str = "palette.menu";
|
pub const PALETTE_MENU: &str = "palette.menu";
|
||||||
|
|
||||||
pub const LOCATION_BACKWARD: &str = "location.backward";
|
pub const LOCATION_BACKWARD: &str = "location.backward";
|
||||||
|
|
Loading…
Reference in New Issue