summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/widgets/altcombobox.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/widgets/altcombobox.cc b/client/widgets/altcombobox.cc
index b59541b..224822e 100644
--- a/client/widgets/altcombobox.cc
+++ b/client/widgets/altcombobox.cc
@@ -125,8 +125,8 @@ AltComboBox::AltComboBox(QDomNode &node, MacroWindow *macrowindow)
if(innerwidget)
connect(innerwidget, SIGNAL(wasChanged()), this, SLOT(onChildChange()));
- frame->layout()->setContentsMargins(0,0,0,0);
- altframe->layout()->setContentsMargins(0,0,0,0);
+ if(frame->layout()) frame->layout()->setContentsMargins(0,0,0,0);
+ if(altframe->layout()) altframe->layout()->setContentsMargins(0,0,0,0);
frame->show(); // Force altframe to get resized to its real size.
altframerepl->setFixedHeight(altframe->height());