diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-08-02 16:00:10 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-08-02 16:00:10 +0200 |
| commit | 91f967ed289918bbbd6d7ae1b992132b6f7cb084 (patch) | |
| tree | 4e736edd59198434f03e586c01ad396d2eea5ce9 /src/config/theme/mod.rs | |
| parent | d1492a10cdaf714074d29ad3366ab9c169d95b75 (diff) | |
remove unneeded `pub`
Diffstat (limited to 'src/config/theme/mod.rs')
| -rw-r--r-- | src/config/theme/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/theme/mod.rs b/src/config/theme/mod.rs index 082cd17..074a063 100644 --- a/src/config/theme/mod.rs +++ b/src/config/theme/mod.rs @@ -7,7 +7,7 @@ use super::DUMMY_CONFIG; pub mod style; pub mod sheetview; -pub(self) mod bar; +mod bar; #[derive(Clone, Debug, Default)] pub struct Theme { |