mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 11:04:00 +01:00
qt: visual fixes
This commit is contained in:
parent
2edce12759
commit
ca78601ada
|
@ -997,30 +997,33 @@ void MainWindow::backClickedFromChild() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::adjustSizesAccordingToWrongLabel() {
|
void MainWindow::adjustSizesAccordingToWrongLabel() {
|
||||||
|
constexpr auto HEIGHT = 581;
|
||||||
|
constexpr auto WIDTH = 707;
|
||||||
if(ui->wrongInputLabel->isVisible()) {
|
if(ui->wrongInputLabel->isVisible()) {
|
||||||
int dh = ui->wrongInputLabel->height()+ui->verticalLayout_7->layout()->spacing();
|
int dh = ui->wrongInputLabel->height()+ui->verticalLayout_7->layout()->spacing();
|
||||||
ui->verticalLayout_7->invalidate();
|
ui->verticalLayout_7->invalidate();
|
||||||
ui->wrongInputLabel->adjustSize();
|
ui->wrongInputLabel->adjustSize();
|
||||||
ui->stackedWidget->adjustSize();
|
ui->stackedWidget->adjustSize();
|
||||||
ui->stackedWidget->setFixedHeight(531-dh);
|
const auto height = HEIGHT - dh;
|
||||||
ui->settingsPage->setFixedHeight(531-dh);
|
ui->stackedWidget->setFixedHeight(height);
|
||||||
ui->verticalLayoutWidget_4->setGeometry(QRect(0, 0, 711, 531-dh));
|
ui->settingsPage->setFixedHeight(height);
|
||||||
ui->stackedWidget->setFixedHeight(531-dh);
|
ui->verticalLayoutWidget_4->setGeometry(QRect(0, 0, WIDTH, height));
|
||||||
ui->settingsScrollArea->setFixedHeight(531-dh-settingsTitleLabelNominalHeight-ui->verticalLayout_4->spacing());
|
ui->stackedWidget->setFixedHeight(height);
|
||||||
|
ui->settingsScrollArea->setFixedHeight(height-settingsTitleLabelNominalHeight-ui->verticalLayout_4->spacing());
|
||||||
ui->settingsTitleLabel->setFixedHeight(settingsTitleLabelNominalHeight);
|
ui->settingsTitleLabel->setFixedHeight(settingsTitleLabelNominalHeight);
|
||||||
ui->tunnelsScrollArea->setFixedHeight(531-dh-settingsTitleLabelNominalHeight-ui->horizontalLayout_42->geometry().height()-2*ui->verticalLayout_4->spacing());
|
ui->tunnelsScrollArea->setFixedHeight(height-settingsTitleLabelNominalHeight-ui->horizontalLayout_42->geometry().height()-2*ui->verticalLayout_4->spacing());
|
||||||
ui->tunnelsTitleLabel->setFixedHeight(settingsTitleLabelNominalHeight);
|
ui->tunnelsTitleLabel->setFixedHeight(settingsTitleLabelNominalHeight);
|
||||||
}else{
|
}else{
|
||||||
ui->verticalLayout_7->invalidate();
|
ui->verticalLayout_7->invalidate();
|
||||||
ui->wrongInputLabel->adjustSize();
|
ui->wrongInputLabel->adjustSize();
|
||||||
ui->stackedWidget->adjustSize();
|
ui->stackedWidget->adjustSize();
|
||||||
ui->stackedWidget->setFixedHeight(531);
|
ui->stackedWidget->setFixedHeight(HEIGHT);
|
||||||
ui->settingsPage->setFixedHeight(531);
|
ui->settingsPage->setFixedHeight(HEIGHT);
|
||||||
ui->verticalLayoutWidget_4->setGeometry(QRect(0, 0, 711, 531));
|
ui->verticalLayoutWidget_4->setGeometry(QRect(0, 0, WIDTH, HEIGHT));
|
||||||
ui->stackedWidget->setFixedHeight(531);
|
ui->stackedWidget->setFixedHeight(HEIGHT);
|
||||||
ui->settingsScrollArea->setFixedHeight(531-settingsTitleLabelNominalHeight-ui->verticalLayout_4->spacing());
|
ui->settingsScrollArea->setFixedHeight(HEIGHT-settingsTitleLabelNominalHeight-ui->verticalLayout_4->spacing());
|
||||||
ui->settingsTitleLabel->setFixedHeight(settingsTitleLabelNominalHeight);
|
ui->settingsTitleLabel->setFixedHeight(settingsTitleLabelNominalHeight);
|
||||||
ui->tunnelsScrollArea->setFixedHeight(531-settingsTitleLabelNominalHeight-ui->horizontalLayout_42->geometry().height()-2*ui->verticalLayout_4->spacing());
|
ui->tunnelsScrollArea->setFixedHeight(HEIGHT-settingsTitleLabelNominalHeight-ui->horizontalLayout_42->geometry().height()-2*ui->verticalLayout_4->spacing());
|
||||||
ui->tunnelsTitleLabel->setFixedHeight(settingsTitleLabelNominalHeight);
|
ui->tunnelsTitleLabel->setFixedHeight(settingsTitleLabelNominalHeight);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue