window doesnt pop up

This commit is contained in:
Alex Janka 2021-07-10 15:17:16 +10:00
parent ed06bcee8b
commit 78a2baa33a
2 changed files with 4 additions and 1 deletions

View file

@ -1,3 +1,5 @@
#![windows_subsystem = "windows"]
use ableton_rack_converter; use ableton_rack_converter;
use std::{fs, path::PathBuf}; use std::{fs, path::PathBuf};

View file

@ -1,6 +1,7 @@
use std::{env, path::PathBuf}; #![windows_subsystem = "windows"]
use ableton_rack_converter::{self, fixers}; use ableton_rack_converter::{self, fixers};
use std::{env, path::PathBuf};
fn main() { fn main() {
let args: Vec<String> = env::args().collect(); let args: Vec<String> = env::args().collect();