Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ scopetime = { path = "./scopetime", version = "0.1" }
serde = "1.0"
shellexpand = "3.1"
simplelog = { version = "0.12", default-features = false }
struct-patch = "0.4"
struct-patch = "0.8"
syntect = { version = "5.2", default-features = false, features = [
"parsing",
"default-syntaxes",
Expand Down
2 changes: 1 addition & 1 deletion src/keys/key_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl From<&GituiKeyEvent> for KeyEvent {
}

#[derive(Debug, Clone, Patch)]
#[patch_derive(Deserialize, Debug)]
#[patch(attribute(derive(Deserialize, Debug)))]
pub struct KeysList {
pub tab_status: GituiKeyEvent,
pub tab_log: GituiKeyEvent,
Expand Down
2 changes: 1 addition & 1 deletion src/ui/style.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use struct_patch::Patch;
pub type SharedTheme = Rc<Theme>;

#[derive(Serialize, Deserialize, Debug, Clone, Patch)]
#[patch_derive(Serialize, Deserialize)]
#[patch(attribute(derive(Serialize, Deserialize)))]
pub struct Theme {
selected_tab: Color,
command_fg: Color,
Expand Down