Compare commits

..

No commits in common. "97c563a5adb02860b234092c07a95572db64aef3" and "e6bf5c1f6e7d3ce882f9475f57b6e85464ee44e6" have entirely different histories.

4 changed files with 3 additions and 5 deletions

1
.envrc
View file

@ -1 +0,0 @@
use nix

2
.gitignore vendored
View file

@ -11,5 +11,3 @@ build/*
!build/README.md
!build/*.sh
!build/Dockerfile.*
.misc
.direnv

View file

@ -1,4 +1,5 @@
use crate::*;
pub(self) use ::{
};
/// Configuration.
///

View file

@ -14,7 +14,7 @@ pub struct Mode<D: Dsl + Ord> {
pub modes: Modes,
}
impl<D: Dsl + Ord> Draw<TuiOut> for Mode<D> {
impl Draw<TuiOut> for Mode {
fn draw (&self, to: &mut TuiOut) {
self.content().draw(to)
}