I have a node which I draw with a double line. If I now draw a path that connects to this node, the path does not stop at the outer border of my node, but exactly in the middle between the two lines. Is there any way to fix this behavior such that the paths correctly ends at the other-most line that I have drawn?
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node[line width=1mm, draw, double, double distance=1cm, circle, minimum width=4cm] (circ) at (0,0) {};
\draw[line width=1mm] (circ) -- (7,0);
\end{tikzpicture}
\end{document}

