When using \only with LaTeXs beamer package, distances seem to change:
\documentclass{beamer}
\begin{document}
\begin{frame}[t]{}
\begin{columns}[T]
\fbox{%
\begin{column}{0.6\textwidth}
Test
\only<-4>{[a]}
\only<5>{[b]}
\only<6>{[c]}
\only<7>{[d]}
\only<4->{\fbox{\textbf{Test}}}
\only<5->{%
\begin{itemize}
\item b
\only<6->{\item c}
\only<7->{\item d}
\end{itemize}}
\end{column}}
\fbox{%
\begin{column}{0.4\textwidth}
\includegraphics[width=\textwidth]{example-image-a}
\end{column}}
\end{columns}
\end{frame}
\end{document}
The second Test slides along from frame to frame (all slides overlayed):
What is happening here?
(P.S. And why are the columns not centered?)

