How can I get the indentation to be the same for normal itemize and itemize in columns? Like in the example code below, the itemize in a column is less indented.
\documentclass{beamer}
\begin{document}
\frame {
\begin{itemize}
\item foo
\item bar
\item baz
\end{itemize}
}
\frame {
\begin{columns}
\column{.5\textwidth}
\begin{itemize}
\item foo
\item bar
\item baz
\end{itemize}
\column{.5\textwidth}
A picture
\end{columns}
}
\end{document}

Is there a simple solution?