We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6275b4b commit d4a0393Copy full SHA for d4a0393
resources/dist.rc
49 Bytes
src/celemod-ui/src/index.html
@@ -65,8 +65,11 @@
65
<link rel="stylesheet" href="./index.scss" />
66
<link rel="stylesheet" href="i2.css" />
67
<script>
68
- if (env.PLATFORM !== "Windows")
+ if (env.PLATFORM !== "Windows") {
69
document.querySelector(".win-ctrl").style.display = "none";
70
+ } else {
71
+ document.body.parentElement.setAttribute('window-frame', 'solid');
72
+ }
73
74
Window.this.isResizable = true;
75
window.isMaximizable = true;
src/main.rs
@@ -1234,7 +1234,7 @@ fn main() {
1234
1235
#[cfg(target_os = "windows")]
1236
{
1237
- builder = builder.glassy().alpha();
+ builder = builder.glassy().alpha().closeable();
1238
}
1239
1240
let mut frame = builder.create();
0 commit comments