diff --git a/views_field_view_handler_field_view.inc b/views_field_view_handler_field_view.inc
index 629b85e..d184649 100644
--- a/views_field_view_handler_field_view.inc
+++ b/views_field_view_handler_field_view.inc
@@ -97,6 +97,22 @@ class views_field_view_handler_field_view extends views_handler_field {
         '#options' => $display_options,
         '#fieldset' => 'views_field_view',
       );
+
+      // Provide a way to directly access the views edit link of the childview/.
+      if ($this->options['view'] && $this->options['display']) {
+        // @todo Improvement the style so the link is easier to find.
+        $form['view_edit_link'] = array(
+          '#markup' => l(t('Edit View'), 'admin/structure/views/view/' . $this->options['view'] . '/edit/' . $this->options['display'],
+            array(
+              'attributes' => array(
+                'target' => '_blank'
+              ),
+            )
+          ),
+          '#fieldset' => 'views_field_view',
+        );
+      }
+
       $form['arguments'] = array(
         '#title' => t('Contextual filters'),
         '#description' => t('Use a comma (,) or forwardslash (/) separated list of each contextual filter which should be forwared to the view. 
