This is a follow-up question to Splitting TOC into two columns on single frame in beamer.
I have the following:
\begin{frame}{Questions}
\begin{multicols}{2}
\tableofcontents
\end{multicols}
\end{frame}
which is giving me
I'd really like to avoid splitting between subsections. Can this be done?
MWE
\documentclass{beamer}
\usepackage{multicol}
\usetheme{default}
\begin{document}
\section{Problem Definition}
\subsection{Terminology}
\subsection{Naive Workflow}
\subsection{Fatal Problem}
\section{Current Solution}
\subsection{What we have}
\subsection{How we use it}
\section{How it Works}
\section{How to Build}
\section{Troubleshooting}
\subsection{No defaulting}
\subsection{Inconsistent defaulting}
\subsection{Most other problems}
\begin{frame}{Questions}
\begin{multicols}{2}
\tableofcontents
\end{multicols}
\end{frame}
\end{document}


