diff --git a/src/calculator/main.rs b/src/calculator/main.rs
index 4466ebd915ae81497a3db0520c5def4878140597..b27dc96855f17a4d759886e408958492c517f363 100644
--- a/src/calculator/main.rs
+++ b/src/calculator/main.rs
@@ -278,7 +278,7 @@ fn eval(input: &str) -> String {
 }
 
 fn main(){
-    let mut window = Window::new(Rect::new(100, 100, 148, 210), "Calculator");
+    let mut window = Window::new(Rect::new(-1, -1, 148, 210), "Calculator");
 
     {
         let text_box = TextBox::new();
diff --git a/src/editor/main.rs b/src/editor/main.rs
index bf0899a2c7d66acd3589c58eeb1040952cee73d2..6f2383fb75fcf1e5406fbbd02fcfe278a4a8dd73 100644
--- a/src/editor/main.rs
+++ b/src/editor/main.rs
@@ -83,7 +83,7 @@ fn main(){
     let save_as_path_option = path_option.clone();
     save_as_action.on_click(move |_action: &Action, _point: Point| {
         println!("Save As");
-        let mut window = Window::new(Rect::new(100, 100, 320, 32), "Save As");
+        let mut window = Window::new(Rect::new(-1, -1, 320, 32), "Save As");
 
         let text_box = TextBox::new();
         text_box.position(0, 0)