Skip to content

Commit

Permalink
Refs #7255. Tweaking size on dimension combobox.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Reuter committed Jun 6, 2013
1 parent 8c4d46b commit 67409e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ DimensionWidget::DimensionWidget()
m_dimensionCombo = new QComboBox();
QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Minimum);
m_dimensionCombo->setSizePolicy(sizePolicy);
m_dimensionCombo->setMinimumSize(QSize(100, 0));
m_dimensionCombo->setMinimumSize(QSize(80, 0));
connect(m_dimensionCombo,SIGNAL(activated(int)),this ,SLOT(dimensionSelectedListener()));
m_axisLayout->addWidget(m_dimensionCombo, Qt::AlignLeft);

Expand Down

0 comments on commit 67409e4

Please sign in to comment.