Skip to content

Commit

Permalink
✨ Dump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nwrenger committed Mar 26, 2024
1 parent 847a70c commit b51bf28
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "omega"
version = "0.1.3"
version = "0.1.4"
repository = "https://github.com/nwrenger/omega"
documentation = "https://github.com/nwrenger/omega"
readme = "README.md"
Expand Down
7 changes: 4 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,10 @@ fn main() {
siv.add_fullscreen_layer(panel);

// custom theme
let mut theme = Theme::default();

theme.shadow = false;
let mut theme = Theme {
shadow: false,
..Default::default()
};

theme.palette[PaletteColor::Background] = Color::Dark(BaseColor::Black);
theme.palette[PaletteColor::View] = Color::Dark(BaseColor::Black);
Expand Down

0 comments on commit b51bf28

Please sign in to comment.