I am using XITS to typeset math, but I have noticed that whitespace in fractions gets larger due to subscripts. The minimal example (typesetted with XeLaTex):
\documentclass[11pt]{article}
\usepackage{unicode-math}
\setmainfont[Mapping=tex-text]{XITS}
\setsansfont{XITS}
\setmathfont{XITS Math}
\begin{document}
\begin{equation}
\frac{\partial V}{\partial I} = \frac{\partial V_{k,l}}{\partial I}
\end{equation}
\end{document}
gives me this:

but I would like the symbols to stay on the same level such as with default math:

How can this be fixed in XITS?
Update: Instead of XITS, I have tried using STIX with pdflatex, xelatex and lualatex. I have also tried XITS with lualatex and the result is always the same. As suggested by @Ruben, I have also tried using
\fontdimen16\textfont2=0pt
\fontdimen17\textfont2=0pt
\begin{equation}...
which ameliorates the situation

but the difference is still rather noticeable. Going to negative values gives the same result as 0pt and I cannot seem to be able to bring \fontdimen19 to yield any effect.
Is there a better fix?

\fontdimens may be the clue (see the above post). – Ruben Jul 10 '15 at 09:56unicode-math.... – cfr Jul 10 '15 at 20:50