fix lint, labrinth crash

This commit is contained in:
Jai A
2024-12-23 17:13:13 -07:00
parent 9952c3a0c1
commit 5b00ac17e5
2 changed files with 4 additions and 6 deletions

View File

@@ -235,12 +235,9 @@ fn main() {
dbg!(url); dbg!(url);
}); });
if let Some(window) = app.get_window("main") { #[cfg(not(target_os = "linux"))]
// Hide window to prevent white flash on startup {
// let _ = window.hide(); if let Some(window) = app.get_window("main") {
#[cfg(not(target_os = "linux"))]
{
window.set_shadow(true).unwrap(); window.set_shadow(true).unwrap();
} }
} }

View File

@@ -0,0 +1 @@
ALTER TABLE team_members ALTER payouts_split TYPE numeric(40, 20);