# HG changeset patch
# User sheepluva
# Date 1475422782 -7200
# Node ID bff919afc63f467a3d242019832865a1e2b0754d
# Parent  35208f442daff3f8e916026ace93afbe8092b2a6
fix a typo back from may that apparently completely broke online-multiplayer due to causing a frontend crash on joining somebody else's room

diff -r 35208f442daf -r bff919afc63f QTfrontend/ui/widget/mapContainer.cpp
--- a/QTfrontend/ui/widget/mapContainer.cpp	Sun Oct 02 15:15:39 2016 +0200
+++ b/QTfrontend/ui/widget/mapContainer.cpp	Sun Oct 02 17:39:42 2016 +0200
@@ -262,7 +262,7 @@
     btnRandTheme->setFixedHeight(30);
     btnRandTheme->setFixedWidth(30);
     connect(btnRandTheme, SIGNAL(clicked()), this, SLOT(setRandomTheme()));
-    m_childWidgets << btnTheme;
+    m_childWidgets << btnRandTheme;
     themeHBox->addWidget(btnRandTheme, 0);
 
     btnTheme = new QPushButton(this);