As a follow up question to draw an ellipse into a Tree picture -tikz package, how would one go about making a skinnier ellipse that encircles two horizontally and vertically offset nodes in a tree?
MWE
\documentclass{article}
\usepackage{tikz}
\usepackage{tikz-qtree}
\usetikzlibrary{shapes,fit}
\begin{document}
\begin{tikzpicture}
\Tree
[.\node(1){asdfasdf};
[.\node(2){hjklhjkl}; ]
[.qwerqwer ]
]
\node[draw,ellipse,fit=(1.north east)(2.south west)]{};
\end{tikzpicture}
\end{document}
Result

Desired result
(Line thickness and color are irrelevant; excuse the shakiness of my freehand drawing with a mouse.)


