Updated window name
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Joe Bellus 2022-10-16 17:03:17 -04:00
parent 976eda23a5
commit bb072ae434
1 changed files with 3 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#![windows_subsystem = "windows"]
mod app_delegate;
mod app_header;
mod commands;
@ -39,6 +41,7 @@ fn main() -> Result<(), PlatformError> {
AppLauncher::with_window(
WindowDesc::new(build_ui())
.resizable(true)
.title("Abacus")
.window_size((600.0, 800.0)),
)
.delegate(app_delegate::Delegate)