rust_minifb
rust_minifb copied to clipboard
Is it possible to completely remove the title bar?
Hi, I'm using minifb on Windows 10

I have setup the following window -
let mut window = Window::new(
"",
width,
height,
WindowOptions {
scale: minifb::Scale::X1,
borderless: true,
title: false,
topmost: true,
..WindowOptions::default()
},
)
.unwrap_or_else(|e| {
panic!("{}", e)
});
I was expecting since I have set borderless: true and title: false that I would have no bar at the top
But in reality the window looks like this.

Is there any way to remove the bar at the top?
Thanks!
Hey,
Sorry for late reply. I'm not actually sure what the expected behavior is here because it was long ago I changed that code and it might be that the flags aren't correct.