Skip to content

Commit

Permalink
remove logs caused by --tui arg
Browse files Browse the repository at this point in the history
  • Loading branch information
couleurm committed Nov 27, 2023
1 parent 83c4d95 commit a917cbd
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,20 @@ pub fn set_window_position(recipe: &Recipe) {
}
}
};
dbg!(&borderless);
dbg!(&always_on_top);
dbg!(&pos);
dbg!(&width);
dbg!(&height);

// dbg!(&borderless);
// dbg!(&always_on_top);
// dbg!(&pos);
// dbg!(&width);
// dbg!(&height);
unsafe {
dbg!(SetConsoleParams(
SetConsoleParams(
borderless as c_int,
always_on_top as c_int,
pos,
width,
height,
));
);
}
}

Expand Down

0 comments on commit a917cbd

Please sign in to comment.