In the following MWE, the space after enumerate is not the same when I use overlay specification (too big in this case) or when I use a standard enumerate. This problem seems to appear only if the last item finishes with math mode. Any idea to this strange problem ?
\documentclass[10pt]{beamer}
\usepackage[french]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usetheme{Madrid}
\setbeamercovered{transparent}
\begin{document}
\begin{frame}
\begin{enumerate}[<+->]
\item First item
\item Second item with math mode :
$$\forall x,\exists y$$ %% Big space after this
\end{enumerate}
After enumerate
\end{frame}
\begin{frame}
\begin{enumerate}
\item First item
\item Second item with math mode :
$$\forall x,\exists y$$ %% Standard space after this
\end{enumerate}
After enumerate
\end{frame}
\end{document}