Files
flameshot/infowindow.cpp
2017-05-10 23:45:31 +02:00

12 lines
304 B
C++

#include "infowindow.h"
#include <QIcon>
// InfoWindow show basic information about the usage of Flameshot
InfoWindow::InfoWindow(QWidget *parent) : QWidget(parent) {
setAttribute(Qt::WA_DeleteOnClose);
setWindowIcon(QIcon(":img/flameshot.svg"));
setWindowTitle(tr("About"));
show();
}