Skip to content

Commit

Permalink
fix: main window visible by default. sometimes required for debug
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Aug 26, 2024
1 parent bb0e1a7 commit 43cad44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/src-tauri/src/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ pub fn setup(app: &App) -> Result<(), Box<dyn std::error::Error>> {
.resizable(true)
.focused(true)
.shadow(true)
.visible(false)
.visible(true)
.build();
if let Err(error) = result {
tracing::error!("{:?}", error);
Expand Down

0 comments on commit 43cad44

Please sign in to comment.