diff options
author | Matias Linares <matiaslina@openmailbox.org> | 2015-11-30 22:50:01 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@openmailbox.org> | 2015-11-30 22:50:01 -0300 |
commit | 12faa87415d91820503b6b1c98ebabbddc50d665 (patch) | |
tree | 1f44c59543467629b0e6560dae05594d82142070 /src/main.rs | |
parent | 17e7402348195d24b7745d4dbea9f922b71f675c (diff) | |
download | dotwm-12faa87415d91820503b6b1c98ebabbddc50d665.tar.gz |
Add resize-win-sticky.
The move window sticky is working weirdly. The movement should be using the
attrs.x and attrs.y instead the attrs.x/y + attrs.width/height. But it's
working :).
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index c9cc11e..21425c8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -87,7 +87,7 @@ fn main() { } } }, - _ => println!("Unknown event"), + _ => (), } collect_zombies(); } |