diff --git a/src/browser/main.rs b/src/browser/main.rs
index 52fc78cc9feac7d7219395a3f7aec2d4b3595b3a..02dfbc3cc13bee48b2dbeb51b3099e5444e95b3f 100644
--- a/src/browser/main.rs
+++ b/src/browser/main.rs
@@ -610,7 +610,7 @@ fn main_window(arg: &str, font: &Font, font_bold: &Font) {
 
     let window_w = 800;
     let window_h = 600;
-    let mut window = Window::new(-1, -1, window_w as u32, window_h as u32,  &format!("Browser ({})", arg)).unwrap();
+    let mut window = Window::new(-1, -1, window_w as u32, window_h as u32,  "Browser").unwrap();
 
     let mut anchors = BTreeMap::new();
     let mut blocks = Vec::new();
@@ -625,7 +625,7 @@ fn main_window(arg: &str, font: &Font, font_bold: &Font) {
     loop {
         if reload {
             reload = false;
-            
+
             window.set_title(&format!("Browser ({})", url));
 
             anchors.clear();