diff -r 416d54ce0c34 -r 5d7a505875cd QTfrontend/hwform.cpp --- a/QTfrontend/hwform.cpp Sat Jan 07 15:23:45 2006 +0000 +++ b/QTfrontend/hwform.cpp Mon Jan 09 20:29:14 2006 +0000 @@ -70,11 +70,11 @@ for(quint8 i = 0; i < BINDS_NUMBER; i++) { LBind[i] = new QLabel(ui.BindsBox->widget(widind)); - LBind[i]->setGeometry(QRect(10, top + 3, 60, 20)); + LBind[i]->setGeometry(QRect(10, top + 3, 70, 20)); LBind[i]->setText(cbinds[i].name); LBind[i]->setAlignment(Qt::AlignRight); CBBind[i] = new QComboBox(ui.BindsBox->widget(widind)); - CBBind[i]->setGeometry(QRect(80, top, 80, 20)); + CBBind[i]->setGeometry(QRect(90, top, 80, 20)); CBBind[i]->addItems(binds); if (cbinds[i].chwidget) { @@ -82,7 +82,7 @@ widind++; } else { - top += 30; + top += 28; } }