Skip to content

Commit

Permalink
Fix empty if.
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Corry committed Sep 28, 2024
1 parent 93be9a2 commit 8872ca3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,7 @@ fn main() -> Result<()> {
println!("Recording window id: {}", win_id);
}
}
if args.get_flag("quiet") {
} else {
if !args.get_flag("quiet") {
println!("[t-rec]: Press Ctrl+D to end recording");
}
thread::sleep(Duration::from_millis(1250));
Expand Down

0 comments on commit 8872ca3

Please sign in to comment.