We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maybe in an About menu.
About
The text was updated successfully, but these errors were encountered:
Starting working on #3
e651289
See example below :
void PulsepickerWindow::showEvent(QShowEvent *event) { QSettings settings(QApplication::applicationDirPath() + globalSettingsName, QSettings::IniFormat); settings.beginGroup("Stylesheet"); QString logoPath = settings.value("Logo", "").toString(); settings.endGroup(); if(logoPath.isEmpty()) { logoPath = ":/Elements/Logo_alphanov.png"; } QPixmap pix = QPixmap (logoPath); int width = this->ui->labelLogo->width(); int height = this->ui->labelLogo->height(); pix = pix.scaled(width, height,Qt::KeepAspectRatio, Qt::SmoothTransformation); this->ui->labelLogo->setPixmap(pix); event->accept(); }
Sorry, something went wrong.
Modified struture of link to github (#3)
e0dd17d
Fixed with release v0.2.0
julian-poidevin
No branches or pull requests
Maybe in an
About
menu.The text was updated successfully, but these errors were encountered: