I really like the floatrow package, but when its code is not required I expect that everything works as normal, however the correct code fails to compile once floatrow is loaded.
What I am talking about are simple parallel figures placed in minipages:
\documentclass[paper=a4, fontsize=11pt]{scrartcl}
\usepackage[demo]{graphicx}
\usepackage{floatrow}
\begin{document}%
\begin{figure}[H]
\begin{minipage}[b]{.5\linewidth}
\centering
\includegraphics[width=0.5\linewidth]{images/TestBild.png}
\caption{A figure}\label{fig:figures:2}
\end{minipage}%
\begin{minipage}[b]{.5\linewidth}
\centering
\includegraphics[width=0.5\linewidth]{images/TestBild.png}
\caption{Another figure}\label{fig:figures:3}
\end{minipage}
\end{figure}
\end{document}%
Comment out floatrow and it compiles correctly.
Any possible solution to get it working with floatrow loaded but without any floatrow commands?