(enter speed) изменить размер?
задавал следующим кодом в конструкторе класса, который унаследовал от QWidget:
speed_line_edit = new QLineEdit();
QPushButton* speedButton = new QPushButton("Enter speed", this);
connect(speedButton, &QPushButton::clicked, this, &Ball::onSpeedButtonClicked);
QVBoxLayout *layout = new QVBoxLayout();
layout->addWidget(speed_line_edit);
layout->addWidget(speedButton);
setLayout(layout);
тут у меня получились кнопки большие очень, хочу уменьшить
Обсуждают сегодня