I would like to uncover a set of equations line by line with and the covered equations should be transparent. The problem occurs when I want to align those equations: somehow the transparency stops at the &-sign.
I attached a minimum working example of the problem, where you can see that only the arrow is transparent instead of the whole line.
I've read the beamer User's Guide but I couldn't find any detailed information about the \uncover-command and known complications, but maybe somebody here is able to help me.
I appreciate any help.
\documentclass[xcolor=dvipsnames]{beamer}
\mode<presentation>
\usetheme{Boadilla}
\setbeamercovered{transparent}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{lmodern,amsfonts,amsmath,amssymb,amsthm}
\title{Dummy-Titel}
\subtitle{Dummy-Untertitel}
\author{Autor}
\date{\today}
\begin{document}
\begin{frame}
\begin{align*}
\uncover<1->{& a = b \wedge b = c \\}
\uncover<2->{\Rightarrow & a = c \\}
\end{align*}
\end{frame}
\end{document}