diff --git a/image_creator/dialog_main.py b/image_creator/dialog_main.py
index f9dd26049912f1d7d9047963bdd3759c0b6f4254..4071018066bc26248fbf8529f707c2d999c130c7 100644
--- a/image_creator/dialog_main.py
+++ b/image_creator/dialog_main.py
@@ -141,14 +141,16 @@ def select_file(d, media):
             else:
                 break
 
-        (code, media) = d.fselect(root, 10, 50,
-                                  title="Please select input media")
+        (code, media) = d.fselect(root, 10, 60, extra_button=1,
+            title="Please select an input media.", extra_label="Running System")
         if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
             if confirm_exit(d, "You canceled the media selection dialog box."):
                 sys.exit(0)
             else:
                 media = None
                 continue
+        elif code == d.DIALOG_EXTRA:
+            media = '/'
 
     return media