We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be29661 commit ba1472fCopy full SHA for ba1472f
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "r2-t2",
3
- "version": "0.2.2",
+ "version": "0.2.3",
4
"private": true,
5
"dependencies": {
6
"@emotion/react": "^11.10.4",
src-tauri/src/main.rs
@@ -201,7 +201,7 @@ fn main() {
201
.setup(|app| {
202
app.manage(Mutex::new(TrayState::NotPlaying));
203
if let Some(window) = app.get_window("main") {
204
- set_shadow(&window, true).expect("Unsupported platform!");
+ set_shadow(&window, true).ok(); // don't care if platform is unsupported
205
}
206
Ok(())
207
})
0 commit comments