I'd like to overlay a series of different blocks, each of which includes an enumeration that pauses with each item. The overprint environment handles this pretty well, but it doesn't seem to be mixing with the theme I'd like to use: Warsaw. Here's a minimal example of my problem:
\documentclass{beamer}
\usetheme{Warsaw}
\begin{document}
\begin{frame}{Test}
\begin{center}
text before
\pause
\begin{overprint}%
\onslide<2-3>\begin{center}{
\begin{block}{Some title here}
\begin{enumerate}[<+->]
\item One
\item Two
\end{enumerate}
\end{block}
}\end{center}
\onslide<4->\begin{center}{
\begin{block}{Some title here}
\begin{enumerate}[<+->]
\item CHicken
\item Duck
\item Rooster
\end{enumerate}
\end{block}
}\end{center}
\end{overprint}
text after
\end{center}
\end{frame}
\end{document}
The blocks are overlayed ontop of each other nicely but the bullet points that get generated go haywire. Here's a screen shot of what happens by the last slide:

Things work fine if I don't include the pauses between each enumeration item. Things also work well if I don't use the Warsaw theme.
Any thoughts as to why the Warsaw theme is corrupting my enumerations?


I did the
– fozziethebeat Aug 24 '12 at 04:52\onslide<2-3>\begin{center{...}}business since it let me center the blocks on top of each other and let me enumerate the blocks as I wanted, sans the horrible side effect noted. Putting the center block inside{..}ends up with a totally different layout.